From 2e59c7131a08acab4944b18ba4b8d82daa402c4f Mon Sep 17 00:00:00 2001 From: jessib Date: Thu, 7 Mar 2013 12:17:13 -0800 Subject: Start to branch using braintree to process credit card payments. --- billing/Rakefile | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 billing/Rakefile (limited to 'billing/Rakefile') diff --git a/billing/Rakefile b/billing/Rakefile new file mode 100644 index 0000000..1dcfb25 --- /dev/null +++ b/billing/Rakefile @@ -0,0 +1,38 @@ +#!/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 = 'Billing' + 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 -- cgit v1.2.3