Skip to content

Instantly share code, notes, and snippets.

@Deradon
Created February 20, 2013 22:05
Show Gist options
  • Save Deradon/5000090 to your computer and use it in GitHub Desktop.
Save Deradon/5000090 to your computer and use it in GitHub Desktop.
Samle Rails::Engine Rakefile
#!/usr/bin/env rake
begin
require 'bundler/setup'
rescue LoadError
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
end
begin
require 'rdoc/task'
rescue LoadError
require 'rdoc/rdoc'
require 'rake/rdoctask'
RDoc::Task = Rake::RDocTask
end
RDoc::Task.new(:rdoc) do |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = 'CmfRaffleWidget'
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment