Sha256: 9641c0e8886ed68f062d96f1bf368eca2ffd47c86c271e52c39542fe3997b54a
Contents?: true
Size: 1.04 KB
Versions: 3
Compression:
Stored size: 1.04 KB
Contents
module Padrino module Routing module Helpers # Used to retrieve the full url for a given named route alias from the named_paths data # Accepts parameters which will be substituted into the url if necessary # url_for(:accounts) => '/accounts' # url_for(:account, :id => 5) => '/account/5' # url_for(:admin, show, :id => 5, :name => "demo") => '/admin/path/5/demo' def url_for(*route_name) values = route_name.extract_options! mapped_url = self.class.named_paths[route_name] || self.class.named_paths[route_name.dup.unshift(self.class.app_name.to_sym)] raise Padrino::RouteNotFound.new("Route alias #{route_name.inspect} is not mapped to a url") unless mapped_url result_url = String.new(File.join(self.class.uri_root, mapped_url)) result_url.scan(%r{/?(:\S+?)(?:/|$)}).each do |placeholder| value_key = placeholder[0][1..-1].to_sym result_url.gsub!(Regexp.new(placeholder[0]), values[value_key].to_s) end result_url end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
padrino-routing-0.2.0 | lib/padrino-routing/helpers.rb |
padrino-routing-0.1.5 | lib/padrino-routing/helpers.rb |
padrino-routing-0.1.4 | lib/padrino-routing/helpers.rb |