Skip to content

Instantly share code, notes, and snippets.

@czajkovsky
Created June 20, 2014 07:58
Show Gist options
  • Save czajkovsky/cd10ea1854f71ffc854c to your computer and use it in GitHub Desktop.
Save czajkovsky/cd10ea1854f71ffc854c to your computer and use it in GitHub Desktop.
# lib/my_gem/railtie.rb
module CreatingAGem
class Railtie < Rails::Railtie
# for example, if you want to extend ViewHelpers
initializer 'creating_a_gem.view_helpers' do
ActionView::Base.send :include, ViewHelpers
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment