Class: Xpost::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/xpost/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration



5
6
7
8
9
10
# File 'lib/xpost/configuration.rb', line 5

def initialize
  @api_key
  @secret_key
  @staging_url
  @production_url
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



3
4
5
# File 'lib/xpost/configuration.rb', line 3

def api_key
  @api_key
end

#production_urlObject

Returns the value of attribute production_url.



3
4
5
# File 'lib/xpost/configuration.rb', line 3

def production_url
  @production_url
end

#secret_keyObject

Returns the value of attribute secret_key.



3
4
5
# File 'lib/xpost/configuration.rb', line 3

def secret_key
  @secret_key
end

#staging_urlObject

Returns the value of attribute staging_url.



3
4
5
# File 'lib/xpost/configuration.rb', line 3

def staging_url
  @staging_url
end