Sha256: b9c5e3de869d1537fdc40b8d73b64e99432d16bab1e1fb53779a1da03e5f2810

Contents?: true

Size: 674 Bytes

Versions: 32

Compression:

Stored size: 674 Bytes

Contents

begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end

require 'rdoc/task'

RDoc::Task.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title    = 'Timepiece'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'



Bundler::GemHelper.install_tasks

require 'rake/testtask'

Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = false
end


task default: :test

Version data entries

32 entries across 32 versions & 1 rubygems

Version Path
timepiece-0.4.1 Rakefile
timepiece-0.4.0 Rakefile
timepiece-0.3.0 Rakefile
timepiece-0.2.12 Rakefile
timepiece-0.2.11 Rakefile
timepiece-0.2.10 Rakefile
timepiece-0.2.9 Rakefile
timepiece-0.2.8 Rakefile
timepiece-0.2.7 Rakefile
timepiece-0.2.6 Rakefile
timepiece-0.2.5 Rakefile
timepiece-0.2.4 Rakefile
timepiece-0.2.3 Rakefile
timepiece-0.2.2 Rakefile
timepiece-0.2.1 Rakefile
timepiece-0.2.0 Rakefile
timepiece-0.1.15 Rakefile
timepiece-0.1.14 Rakefile
timepiece-0.1.13 Rakefile
timepiece-0.1.12 Rakefile