Module: Wix
- Extended by:
- Wix
- Included in:
- Wix
- Defined in:
- lib/wix.rb,
lib/wix/version.rb,
lib/wix/instance.rb,
lib/wix/errors/wix_error.rb
Defined Under Namespace
Classes: Instance, WixError
Constant Summary
collapse
- VERSION =
"0.0.5"
Instance Method Summary
collapse
Instance Method Details
#app_key ⇒ Object
25
26
27
28
|
# File 'lib/wix.rb', line 25
def app_key
return @app_key if @app_key
"missing_app_key"
end
|
#app_key=(app_key) ⇒ Object
21
22
23
|
# File 'lib/wix.rb', line 21
def app_key=(app_key)
@app_key = app_key
end
|
#app_secret_key ⇒ Object
16
17
18
19
|
# File 'lib/wix.rb', line 16
def app_secret_key
return @app_secret_key if @app_secret_key
"missing_app_secret_key"
end
|
#app_secret_key=(app_secret_key) ⇒ Object
12
13
14
|
# File 'lib/wix.rb', line 12
def app_secret_key=(app_secret_key)
@app_secret_key = app_secret_key
end
|