Sha256: 40964c7b02bd372307fbb7faaebdff5399cde95124b1157f5936a99e6b20f38c
Contents?: true
Size: 454 Bytes
Versions: 24
Compression:
Stored size: 454 Bytes
Contents
require 'rubygems' require 'rake' begin require 'bundler' rescue LoadError => e warn e.message warn "Run `gem install bundler` to install Bundler." exit -1 end begin Bundler.setup(:development) rescue Bundler::BundlerError => e warn e.message warn "Run `bundle install` to install missing gems." exit e.status_code end require "bundler/gem_tasks" require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) task :default => :spec
Version data entries
24 entries across 24 versions & 1 rubygems