module Aptible::Rails::UrlHelper

Public Class Methods

aptible_config() click to toggle source
# File lib/aptible/rails/url_helper.rb, line 12
def self.aptible_config
  Aptible::Rails.configuration
end
register_url(name, url) click to toggle source
# File lib/aptible/rails/url_helper.rb, line 7
def self.register_url(name, url)
  define_method(name) { url }
  helper_method name
end