Sha256: 27bd588e6f3d3094dea9e6e302f3d60a2bb4dd4928f155dd22a5bda2a8eede9b

Contents?: true

Size: 587 Bytes

Versions: 14

Compression:

Stored size: 587 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    = 'ActsAsCommentableMore'
  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

14 entries across 14 versions & 1 rubygems

Version Path
acts_as_commentable_more-1.2.11 Rakefile
acts_as_commentable_more-1.2.10 Rakefile
acts_as_commentable_more-1.2.9 Rakefile
acts_as_commentable_more-1.2.8 Rakefile
acts_as_commentable_more-1.2.7 Rakefile
acts_as_commentable_more-1.2.6 Rakefile
acts_as_commentable_more-1.2.5 Rakefile
acts_as_commentable_more-1.2.4 Rakefile
acts_as_commentable_more-1.2.3 Rakefile
acts_as_commentable_more-1.2.2 Rakefile
acts_as_commentable_more-1.2.1 Rakefile
acts_as_commentable_more-1.2.0 Rakefile
acts_as_commentable_more-1.1.0 Rakefile
acts_as_commentable_more-1.0.0 Rakefile