Sha256: f6dda316287922a83013dfc5d0b5ada4f416ef607fe5f61a6052bf2ed04560fa
Contents?: true
Size: 660 Bytes
Versions: 3
Compression:
Stored size: 660 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" require File.expand_path("../spec/example_app/config/application", __FILE__) RDoc::Task.new(:rdoc) do |rdoc| rdoc.rdoc_dir = "rdoc" rdoc.title = "Administrate" rdoc.options << "--line-numbers" rdoc.rdoc_files.include("README.rdoc") rdoc.rdoc_files.include("lib/**/*.rb") end Bundler::GemHelper.install_tasks Rails.application.load_tasks task(:default).clear task default: [:spec] if defined? RSpec task(:spec).clear RSpec::Core::RakeTask.new(:spec) do |t| t.verbose = false end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
administrate-1.0.0.beta3 | Rakefile |
administrate-1.0.0.beta2 | Rakefile |
administrate-1.0.0.beta1 | Rakefile |