Sha256: 55bdfab2675f6386290953241f9322c8d31296eeece0dbecd7ae8afa8e2dcc10

Contents?: true

Size: 550 Bytes

Versions: 3

Compression:

Stored size: 550 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    = 'MeterCat'
  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'

Bundler::GemHelper.install_tasks

load 'tasks/meter_cat.rake'
load 'tasks/spec_cat.rake'

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
meter_cat-5.0.1 Rakefile
meter_cat-5.0.0 Rakefile
meter_cat-0.0.7 Rakefile