Sha256: 30e63a01802ce4d52e7c9aa7bf19e814d872e2037a56d13e754ef13e22d2a1e8

Contents?: true

Size: 578 Bytes

Versions: 30

Compression:

Stored size: 578 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    = 'SmarterListing'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.md')
  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

30 entries across 30 versions & 1 rubygems

Version Path
smarter_listing-0.4.2 Rakefile
smarter_listing-0.4.2.pre Rakefile
smarter_listing-0.4.0 Rakefile
smarter_listing-0.3.7 Rakefile
smarter_listing-0.3.6 Rakefile
smarter_listing-0.3.5 Rakefile
smarter_listing-0.3.4 Rakefile
smarter_listing-0.3.3 Rakefile
smarter_listing-0.3.2 Rakefile
smarter_listing-0.3.0 Rakefile
smarter_listing-0.2.9 Rakefile
smarter_listing-0.2.8 Rakefile
smarter_listing-0.2.7 Rakefile
smarter_listing-0.2.6 Rakefile
smarter_listing-0.2.5 Rakefile
smarter_listing-0.2.4 Rakefile
smarter_listing-0.2.3 Rakefile
smarter_listing-0.2.2 Rakefile
smarter_listing-0.2.1 Rakefile
smarter_listing-0.2.0 Rakefile