Module: HelloHelper

Defined in:
lib/generators/hello/install/templates/hello_helper.rb

Instance Method Summary collapse

Instance Method Details

Please take one of two actions

  1. Add gem ‘nav_lynx’ to your Gemfile and remove this file

  2. 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