mbleigh (owner)

Revisions

gist: 46651 Download_button fork
public
Public Clone URL: git://gist.github.com/46651.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
>> ActionController::UrlWriter.default_url_options
=> {:host=>nil}
>> ActionController::UrlWriter.default_url_options[:host] = 'abc.com'
=> "abc.com"
>> ActionController::UrlWriter.default_url_options[:host]
=> "abc.com"
>>