class Eloan::Configuration
Attributes
app_key[RW]
app_token[RW]
bg_return_url[RW]
client_name[RW]
company_name[RW]
env[RW]
platform[RW]
Public Class Methods
new()
click to toggle source
# File lib/eloan/configuration.rb, line 6 def initialize @env = 'development' end
Public Instance Methods
production?()
click to toggle source
# File lib/eloan/configuration.rb, line 10 def production? env == 'production' end