Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created January 8, 2011 08:46
Show Gist options
  • Save jackdempsey/770689 to your computer and use it in GitHub Desktop.
Save jackdempsey/770689 to your computer and use it in GitHub Desktop.
module MtForum
class Engine < Rails::Engine
isolate_namespace MtForum
config.generators do |g|
g.template_engine :haml
g.test_framework :rspec
end
rake_tasks do
desc "task defined in engine"
task :foo do
puts 'bar'
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment