Class: ActionDispatch::Routing::RouteSet::CustomUrlHelper

Inherits:
Object
  • Object
show all
Defined in:
lib/action_dispatch/routing/route_set.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, defaults, &block) ⇒ CustomUrlHelper

Returns a new instance of CustomUrlHelper.



687
688
689
690
691
# File 'lib/action_dispatch/routing/route_set.rb', line 687

def initialize(name, defaults, &block)
  @name = name
  @defaults = defaults
  @block = block
end

Instance Attribute Details

#blockObject (readonly)

Returns the value of attribute block.



685
686
687
# File 'lib/action_dispatch/routing/route_set.rb', line 685

def block
  @block
end

#defaultsObject (readonly)

Returns the value of attribute defaults.



685
686
687
# File 'lib/action_dispatch/routing/route_set.rb', line 685

def defaults
  @defaults
end

#nameObject (readonly)

Returns the value of attribute name.



685
686
687
# File 'lib/action_dispatch/routing/route_set.rb', line 685

def name
  @name
end

Instance Method Details

#call(t, args, only_path = false) ⇒ Object



693
694
695
696
697
698
699
700
701
702
# File 'lib/action_dispatch/routing/route_set.rb', line 693

def call(t, args, only_path = false)
  options = args.extract_options!
  url = t.full_url_for(eval_block(t, args, options))

  if only_path
    "/" + url.partition(%r{(?<!/)/(?!/)}).last
  else
    url
  end
end