Sha256: 716f5689a06d5b8eeadc3db3af5c95f9ae7e782ae2c37e52dda5189fe311b6e0

Contents?: true

Size: 581 Bytes

Versions: 23

Compression:

Stored size: 581 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    = 'PolyBelongsTo'
  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

23 entries across 23 versions & 1 rubygems

Version Path
poly_belongs_to-1.0.0 Rakefile
poly_belongs_to-0.3.0 Rakefile
poly_belongs_to-0.2.9 Rakefile
poly_belongs_to-0.2.8 Rakefile
poly_belongs_to-0.2.7 Rakefile
poly_belongs_to-0.2.6 Rakefile
poly_belongs_to-0.2.5 Rakefile
poly_belongs_to-0.2.4 Rakefile
poly_belongs_to-0.2.3 Rakefile
poly_belongs_to-0.2.2 Rakefile
poly_belongs_to-0.2.1 Rakefile
poly_belongs_to-0.2.0 Rakefile
poly_belongs_to-0.1.10 Rakefile
poly_belongs_to-0.1.9 Rakefile
poly_belongs_to-0.1.8 Rakefile
poly_belongs_to-0.1.7 Rakefile
poly_belongs_to-0.1.6 Rakefile
poly_belongs_to-0.1.5 Rakefile
poly_belongs_to-0.1.4 Rakefile
poly_belongs_to-0.1.3 Rakefile