Sha256: 4dc13fedff43e90b99e780e498a79732cf16bce0e67311038a2d6726f454ed3f

Contents?: true

Size: 715 Bytes

Versions: 15

Compression:

Stored size: 715 Bytes

Contents

#!/usr/bin/env rake
begin
  require 'bundler/setup'
rescue LoadError
  puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
  require 'rdoc/task'
rescue LoadError
  require 'rdoc/rdoc'
  require 'rake/rdoctask'
  RDoc::Task = Rake::RDocTask
end

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




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

15 entries across 15 versions & 1 rubygems

Version Path
acts_as_nested_interval-0.3.0.pre Rakefile
acts_as_nested_interval-0.2.0 Rakefile
acts_as_nested_interval-0.2.0.pre2 Rakefile
acts_as_nested_interval-0.2.0.pre Rakefile
acts_as_nested_interval-0.1.1 Rakefile
acts_as_nested_interval-0.1.0 Rakefile
acts_as_nested_interval-0.0.10 Rakefile
acts_as_nested_interval-0.0.9 Rakefile
acts_as_nested_interval-0.0.8 Rakefile
acts_as_nested_interval-0.0.7 Rakefile
acts_as_nested_interval-0.0.6 Rakefile
acts_as_nested_interval-0.0.5 Rakefile
acts_as_nested_interval-0.0.4 Rakefile
acts_as_nested_interval-0.0.2 Rakefile
acts_as_nested_interval-0.0.1 Rakefile