Created
July 28, 2014 11:47
-
-
Save malachheb/bbedd27189e7d4a4b327 to your computer and use it in GitHub Desktop.
Rakefile for travisCI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'bundler' | |
begin | |
Bundler.setup(:default, :development) | |
rescue Bundler::BundlerError => e | |
$stderr.puts e.message | |
$stderr.puts "Run `bundle install` to install missing gems" | |
exit e.status_code | |
end | |
require 'rspec/core' | |
require 'rspec/core/rake_task' | |
RSpec::Core::RakeTask.new(:spec) do |spec| | |
spec.pattern = FileList['spec/**/*_spec.rb'] | |
end | |
require 'rubocop/rake_task' | |
Rubocop::RakeTask.new(:rubocop) | |
task default: [:rubocop, :spec] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment