Sha256: 3442bf7a3e448ae6040f7241cb3acb66e03d67f9faa4b43ba334f2eff6b2c12f

Contents?: true

Size: 708 Bytes

Versions: 7

Compression:

Stored size: 708 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    = 'Avatax'
  rdoc.options << '--line-numbers'
  rdoc.rdoc_files.include('README.rdoc')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
load 'rails/tasks/engine.rake'


load 'rails/tasks/statistics.rake'



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

7 entries across 7 versions & 1 rubygems

Version Path
killbill-avatax-2.0.0 Rakefile
killbill-avatax-1.0.0 Rakefile
killbill-avatax-0.2.0 Rakefile
killbill-avatax-0.1.0 Rakefile
killbill-avatax-0.0.3 Rakefile
killbill-avatax-0.0.2 Rakefile
killbill-avatax-0.0.1 Rakefile