Sha256: 9dd249a5a8b3024930c56b63ffb8e291604b3a1cbd5109c20d2ce47adc46fc5b

Contents?: true

Size: 712 Bytes

Versions: 18

Compression:

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

APP_RAKEFILE = File.expand_path("../spec/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

18 entries across 18 versions & 1 rubygems

Version Path
bloom_remit-0.13.0 Rakefile
bloom_remit-0.12.1 Rakefile
bloom_remit-0.12.0 Rakefile
bloom_remit-0.11.0 Rakefile
bloom_remit-0.10.0 Rakefile
bloom_remit-0.9.0 Rakefile
bloom_remit-0.8.0 Rakefile
bloom_remit-0.7.0 Rakefile
bloom_remit-0.6.1 Rakefile
bloom_remit-0.6.0 Rakefile
bloom_remit-0.5.0 Rakefile
bloom_remit-0.4.1 Rakefile
bloom_remit-0.4.0 Rakefile
bloom_remit-0.3.0 Rakefile
bloom_remit-0.2.1 Rakefile
bloom_remit-0.2.0 Rakefile
bloom_remit-0.1.0 Rakefile
bloom_remit-0.0.1 Rakefile