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.1.9 Rakefile
smarter_listing-0.1.8 Rakefile
smarter_listing-0.1.7 Rakefile
smarter_listing-0.1.6 Rakefile
smarter_listing-0.1.5 Rakefile
smarter_listing-0.1.4 Rakefile
smarter_listing-0.1.3 Rakefile
smarter_listing-0.1.2 Rakefile
smarter_listing-0.1.1 Rakefile
smarter_listing-0.1.0 Rakefile