Sha256: 6ba321f02ce0c7fddf815ac104d14e199c6c6ae9465ac00b8c4c6189b689408e

Contents?: true

Size: 616 Bytes

Versions: 25

Compression:

Stored size: 616 Bytes

Contents

begin
  require 'bundler'
  Bundler::GemHelper.install_tasks
rescue Exception => e
end

require 'rake'
require 'rspec'
require 'rspec/core/rake_task'
require 'csv2hash'

RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
end

RSpec::Core::RakeTask.new('spec:progress') do |spec|
  spec.rspec_opts = %w(--format progress)
  spec.pattern = 'spec/**/*_spec.rb'
end

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'csv2hash #{csv2hash::VERSION}'
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

task default: :spec

Version data entries

25 entries across 25 versions & 1 rubygems

Version Path
csv2hash-0.7.7 Rakefile
csv2hash-0.7.6 Rakefile
csv2hash-0.7.5 Rakefile
csv2hash-0.7.3 Rakefile
csv2hash-0.7.2 Rakefile
csv2hash-0.7.1 Rakefile
csv2hash-0.7.0 Rakefile
csv2hash-0.6.8 Rakefile
csv2hash-0.6.7 Rakefile
csv2hash-0.6.6 Rakefile
csv2hash-0.6.5 Rakefile
csv2hash-0.6.4 Rakefile
csv2hash-0.6.3 Rakefile
csv2hash-0.6.2 Rakefile
csv2hash-0.6.1 Rakefile
csv2hash-0.6.0 Rakefile
csv2hash-0.5.0 Rakefile
csv2hash-0.4.0 Rakefile
csv2hash-0.3.0 Rakefile
csv2hash-0.2.1 Rakefile