Module: HelloHelper
- Defined in:
- lib/generators/hello/install/templates/hello_helper.rb
Instance Method Summary collapse
-
#nav_link_to(*args) ⇒ Object
Please take one of two actions 1.
Instance Method Details
#nav_link_to(*args) ⇒ Object
Please take one of two actions
-
Add gem ‘nav_lynx’ to your Gemfile and remove this file
-
edit partial ‘views/hello/shared/_settings’ and replace ‘nav_link_to` for `link_to`
6 7 8 9 10 11 12 13 14 |
# File 'lib/generators/hello/install/templates/hello_helper.rb', line 6 def nav_link_to(*args) if defined?(NavLYNX) super else puts "#{__FILE__}" args.pop link_to(*args) end end |