Sha256: f56ed8547975086df13e63cf36bd1b5a7c71e9b0152827c3b0e8cbe38eb33b74

Contents?: true

Size: 597 Bytes

Versions: 22

Compression:

Stored size: 597 Bytes

Contents

require 'bundler/setup'
require 'bundler/gem_tasks'
require 'rake/testtask'
require 'rdoc/task'

$LOAD_PATH.unshift("lib")

Rake::RDocTask.new do |rdoc|
  if File.exist?('VERSION')
    version = File.read('VERSION')
  else
    version = ""
  end

  rdoc.rdoc_dir = 'rdoc'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.title = "timecop #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('History.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

task :test do 
  system "cd test && ./run_tests.sh"
end

desc 'Default: run tests'
task :default => [:test]

Version data entries

22 entries across 22 versions & 2 rubygems

Version Path
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/timecop-0.6.1/Rakefile
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/timecop-0.6.1/Rakefile
timecop-0.6.1 Rakefile
timecop-0.6.0 Rakefile
timecop-0.5.9.2 Rakefile
timecop-0.5.9.1 Rakefile
timecop-0.5.9 Rakefile
timecop-0.5.8 Rakefile
timecop-0.5.7 Rakefile
timecop-0.5.6 Rakefile
timecop-0.5.5 Rakefile
timecop-0.5.4 Rakefile
timecop-0.5.3 Rakefile
timecop-0.5.2 Rakefile
timecop-0.5.1 Rakefile
timecop-0.5.0 Rakefile
timecop-0.4.6 Rakefile
timecop-0.4.5 Rakefile
timecop-0.4.4 Rakefile
timecop-0.4.3 Rakefile