Sha256: 76d39e0ab6bbcd4a79d60ce9a408ee3c8181b07c6ba2caf28f8348db328fda02

Contents?: true

Size: 498 Bytes

Versions: 28

Compression:

Stored size: 498 Bytes

Contents

#!/usr/bin/env rake
require "bundler/gem_tasks"

require 'rubygems'
require 'rake'

require 'rspec/core/rake_task'

desc "Run RSpec"
RSpec::Core::RakeTask.new do |t|
  t.verbose = false
end

desc "Run specs for all test cases"
task :spec_all do 
  system "rake spec"
end

# task :spec_all do
#   %w[active_record data_mapper mongoid].each do |model_adapter|
#     puts "MODEL_ADAPTER = #{model_adapter}"
#     system "rake spec MODEL_ADAPTER=#{model_adapter}"
#   end
# end

task :default => :spec

Version data entries

28 entries across 28 versions & 2 rubygems

Version Path
smarter_csv-1.4.0 Rakefile
smarter_csv-1.3.0 Rakefile
smarter_csv-1.2.8 Rakefile
smarter_csv-1.2.7 Rakefile
pokedex-terminal-0.2.8 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/Rakefile
pokedex-terminal-0.2.7 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/Rakefile
pokedex-terminal-0.2.6 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/Rakefile
pokedex-terminal-0.2.5 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/Rakefile
pokedex-terminal-0.2.4 vendor/bundle/ruby/2.7.0/gems/smarter_csv-1.2.6/Rakefile
smarter_csv-1.2.6 Rakefile
smarter_csv-1.2.5 Rakefile
smarter_csv-1.2.4 Rakefile
smarter_csv-1.2.3 Rakefile
smarter_csv-1.2.0 Rakefile
smarter_csv-1.1.5 Rakefile
smarter_csv-1.1.4 Rakefile
smarter_csv-1.1.3 Rakefile
smarter_csv-1.1.2 Rakefile
smarter_csv-1.1.1 Rakefile
smarter_csv-1.1.0 Rakefile