class Ecommerce::Configuration
Attributes
secret[RW]
token[RW]
url[RW]
user_agent[RW]
Public Class Methods
new()
click to toggle source
# File lib/ecommerce/configuration.rb, line 7 def initialize @url = "https://ecommerce.myfreecomm.com.br" @user_agent = "Ecommerce Ruby Client v#{Ecommerce::VERSION}" @token = nil @secret = nil end