Permalink
Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign up
Fetching contributors…
Cannot retrieve contributors at this time.
Cannot retrieve contributors at this time
require 'bundler' | |
begin | |
Bundler.setup | |
rescue Bundler::BundlerError => e | |
$stderr.puts e.message | |
$stderr.puts "Run `bundle install' to install missing gems" | |
exit e.status_code | |
end | |
if ENV['TRAVIS'] | |
at_exit do | |
system('bundle exec sheldon') | |
end | |
end | |
require 'rspec/core' | |
require 'rspec/core/rake_task' | |
RSpec::Core::RakeTask.new(:spec) do |spec| | |
if ENV['TRAVIS'] | |
spec.rspec_opts = %w{ --require spec_helper.rb --format Fuubar --color --format json --out spec/sheldon/travis.json } | |
else | |
spec.rspec_opts = %w{ --require spec_helper.rb --format Fuubar --color --format json --out spec/sheldon/travis.json } | |
end | |
end | |
task :default => [:spec] |