Sha256: 7de9ce8d98604423f826fbe212f8a750f7dac2818662634a070e16235354e1ba
Contents?: true
Size: 429 Bytes
Versions: 4
Compression:
Stored size: 429 Bytes
Contents
require 'rubygems' require 'bundler/gem_tasks' 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 'rake' require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end task :default => :spec
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
heroku-commander-0.3.1 | Rakefile |
heroku-commander-0.3.0 | Rakefile |
heroku-commander-0.2.0 | Rakefile |
heroku-commander-0.1.0 | Rakefile |