Sha256: d3b9d159937c4661194f8635ad3c56809679e736dd7561ae1d0bb829369b6ef7

Contents?: true

Size: 515 Bytes

Versions: 11

Compression:

Stored size: 515 Bytes

Contents

require "bundler/gem_tasks"
require 'rake/testtask'

Rake::TestTask.new(:test) do |test|
  test.ruby_opts << '-r./test/simplecov_start.rb' if defined?(SimbleCov)
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

task :default => :test

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = HTTP::Cookie::VERSION

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "http-cookie #{version}"
  rdoc.rdoc_files.include('lib/**/*.rb')
  rdoc.rdoc_files.include(Bundler::GemHelper.gemspec.extra_rdoc_files)
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
http-cookie-1.0.0.pre8 Rakefile
http-cookie-1.0.0.pre7 Rakefile
http-cookie-1.0.0.pre6 Rakefile
http-cookie-1.0.0.pre5 Rakefile
http-cookie-1.0.0.pre4 Rakefile
http-cookie-1.0.0.pre3 Rakefile
http-cookie-1.0.0.pre2 Rakefile
http-cookie-1.0.0.pre1 Rakefile
http-cookie-0.1.5 Rakefile
http-cookie-0.1.4 Rakefile
http-cookie-0.1.2 Rakefile