Sha256: 8ac848ad7c5c68f2a1dc15e1b519db562803e33503d580c8fe60b6615f13eca1

Contents?: true

Size: 715 Bytes

Versions: 17

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    = 'CatarsePaypalExpress'
  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

17 entries across 17 versions & 2 rubygems

Version Path
catarse_paypal_express-2.2.4 Rakefile
catarse_paypal_express-3.0.2 Rakefile
funddit_paypal_express-3.0.1 Rakefile
catarse_paypal_express-3.0.1 Rakefile
catarse_paypal_express-3.0.0 Rakefile
catarse_paypal_express-2.2.3 Rakefile
catarse_paypal_express-2.2.2 Rakefile
catarse_paypal_express-2.2.1 Rakefile
catarse_paypal_express-2.2.0 Rakefile
catarse_paypal_express-2.1.2 Rakefile
catarse_paypal_express-2.1.1 Rakefile
catarse_paypal_express-2.1.0 Rakefile
catarse_paypal_express-2.0.0 Rakefile
catarse_paypal_express-1.0.0 Rakefile
catarse_paypal_express-0.1.0 Rakefile
catarse_paypal_express-0.0.2 Rakefile
catarse_paypal_express-0.0.1 Rakefile