Sha256: c74892c28fd7365ecc81a85d9a2d8399788518d4a059ea10323b0c1d993d4865
Contents?: true
Size: 373 Bytes
Versions: 7
Compression:
Stored size: 373 Bytes
Contents
require "bundler/gem_tasks" require "rspec/core/rake_task" namespace :test do RSpec::Core::RakeTask.new(:with_binding_of_caller) without_task = RSpec::Core::RakeTask.new(:without_binding_of_caller) without_task.ruby_opts = "-I spec -r without_binding_of_caller" task :all => [:with_binding_of_caller, :without_binding_of_caller] end task :default => "test:all"
Version data entries
7 entries across 7 versions & 3 rubygems