summaryrefslogtreecommitdiff
path: root/Rakefile
blob: b155238944c9096b7dedb8aba3bd4290043ee549 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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|
  spec.rspec_opts = %w{ --require spec_helper.rb --format Fuubar --color --format json --out spec/sheldon/travis.json }
end

task :default => [:spec]