Sha256: c8f631a2ffb87cd3bf043762b5e93bae795b2dde001efe40d02d130d40557e41

Contents?: true

Size: 652 Bytes

Versions: 7

Compression:

Stored size: 652 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    = "BootstrapBuilders"
  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", __dir__)
load "rails/tasks/engine.rake"
load "rails/tasks/statistics.rake"

Bundler::GemHelper.install_tasks

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
bootstrap_builders-1.0.4 Rakefile
bootstrap_builders-0.0.63 Rakefile
bootstrap_builders-1.0.3 Rakefile
bootstrap_builders-1.0.2 Rakefile
bootstrap_builders-1.0.1 Rakefile
bootstrap_builders-1.0.0 Rakefile
bootstrap_builders-0.0.62 Rakefile