Sha256: 46422413651ae9a35a6d025a6559a0e22f25b1eee48ae152d852b6a35b91318b
Contents?: true
Size: 352 Bytes
Versions: 6
Compression:
Stored size: 352 Bytes
Contents
#!/usr/bin/env rake require "bundler/gem_tasks" require 'rubygems' require 'rake' require 'rspec/core/rake_task' task :default => :spec desc "Run RSpec" RSpec::Core::RakeTask.new do |t| # t.verbose = false end desc 'Run spec with coverage' task :coverage do ENV['COVERAGE'] = 'true' Rake::Task['spec'].execute `open coverage/index.html` end
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
smarter_csv-1.6.1 | Rakefile |
smarter_csv-1.6.0 | Rakefile |
smarter_csv-1.5.2 | Rakefile |
smarter_csv-1.5.1 | Rakefile |
smarter_csv-1.5.0 | Rakefile |
smarter_csv-1.4.2 | Rakefile |