Skip to content

Instantly share code, notes, and snippets.

@malachheb
Created July 28, 2014 11:47
Show Gist options
  • Save malachheb/bbedd27189e7d4a4b327 to your computer and use it in GitHub Desktop.
Save malachheb/bbedd27189e7d4a4b327 to your computer and use it in GitHub Desktop.
Rakefile for travisCI
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