Sha256: 11972e7b1c64dc384e85cb973c35644dfc7a72c815341871548957a0c8fb228a
Contents?: true
Size: 521 Bytes
Versions: 18
Compression:
Stored size: 521 Bytes
Contents
require 'rspec/core/rake_task' task :default => 'test:unit' task :test => 'test:unit' namespace :test do desc 'Run all RSpec code examples' RSpec::Core::RakeTask.new(:all) desc 'Run RSpec unit code examples' RSpec::Core::RakeTask.new(:unit) do |t| t.pattern = 'spec/bundler/unit/**{,/*/**}/*_spec.rb' end desc 'Run RSpec integration code examples' RSpec::Core::RakeTask.new(:integration) do |t| t.pattern = 'spec/bundler/integration/**{,/*/**}/*_spec.rb' end end require 'bundler/gem_tasks'
Version data entries
18 entries across 18 versions & 1 rubygems