Sha256: 3a1b97906948bc0a31dd2f1d060c7289f0dd09da7276872a590cc51b2ea57402

Contents?: true

Size: 642 Bytes

Versions: 14

Compression:

Stored size: 642 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    = "PeakFlowUtils"
  rdoc.options << "--line-numbers"
  rdoc.rdoc_files.include("README.md")
  rdoc.rdoc_files.include("lib/**/*.rb")
end

APP_RAKEFILE = File.expand_path("spec/dummy/Rakefile", __dir__)
load "rails/tasks/engine.rake"

load "rails/tasks/statistics.rake"

require "bundler/gem_tasks"

if Rails.env.development? || Rails.env.test?
  require "best_practice_project"
  BestPracticeProject.load_tasks
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
peak_flow_utils-0.1.19 Rakefile
peak_flow_utils-0.1.18 Rakefile
peak_flow_utils-0.1.17 Rakefile
peak_flow_utils-0.1.16 Rakefile
peak_flow_utils-0.1.15 Rakefile
peak_flow_utils-0.1.14 Rakefile
peak_flow_utils-0.1.13 Rakefile
peak_flow_utils-0.1.12 Rakefile
peak_flow_utils-0.1.11 Rakefile
peak_flow_utils-0.1.10 Rakefile
peak_flow_utils-0.1.9 Rakefile
peak_flow_utils-0.1.8 Rakefile
peak_flow_utils-0.1.7 Rakefile
peak_flow_utils-0.1.6 Rakefile