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

Version Path
bundler-patch-1.2.0 Rakefile
bundler-patch-1.1.0 Rakefile
bundler-patch-1.1.0.pre6 Rakefile
bundler-patch-1.1.0.pre5 Rakefile
bundler-patch-1.1.0.pre4 Rakefile
bundler-patch-1.1.0.pre3 Rakefile
bundler-patch-1.1.0.pre2 Rakefile
bundler-patch-1.1.0.pre1 Rakefile
bundler-patch-1.0.0 Rakefile
bundler-patch-1.0.0.pre.1 Rakefile
bundler-patch-0.10.4 Rakefile
bundler-patch-0.10.3 Rakefile
bundler-patch-0.10.2 Rakefile
bundler-patch-0.10.1 Rakefile
bundler-patch-0.10.0 Rakefile
bundler-patch-0.9.0 Rakefile
bundler-patch-0.8.0 Rakefile
bundler-patch-0.7.2 Rakefile