1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00

Remove :travis task [ci skip]

This commit is contained in:
Zachary Scott 2016-04-11 12:48:21 +09:00
parent c6c661f552
commit b5d11c3e22

View file

@ -49,15 +49,6 @@ end
task :gemspec => 'sinatra-contrib.gemspec'
desc 'update travis config to correspond to sinatra'
task :travis, [:branch] do |t, a|
a.with_defaults :branch => :master
data = YAML.load open("https://raw.github.com/sinatra/sinatra/#{a.branch}/.travis.yml")
data["notifications"]["recipients"] << "ohhgabriel@gmail.com"
File.open('.travis.yml', 'w') { |f| f << data.to_yaml }
system 'git add .travis.yml && git diff --cached .travis.yml'
end
task :release => :gemspec do
sh <<-SH
rm -Rf sinatra-contrib*.gem &&