Class: Spade::Credentials
- Inherits:
-
Object
- Object
- Spade::Credentials
- Defined in:
- lib/spade/credentials.rb
Instance Attribute Summary collapse
-
#api_key ⇒ Object
readonly
Returns the value of attribute api_key.
-
#email ⇒ Object
readonly
Returns the value of attribute email.
Instance Method Summary collapse
-
#initialize(env) ⇒ Credentials
constructor
A new instance of Credentials.
- #save(email, api_key) ⇒ Object
Constructor Details
#initialize(env) ⇒ Credentials
Returns a new instance of Credentials.
5 6 7 8 |
# File 'lib/spade/credentials.rb', line 5 def initialize(env) @env = env parse end |
Instance Attribute Details
#api_key ⇒ Object (readonly)
Returns the value of attribute api_key.
3 4 5 |
# File 'lib/spade/credentials.rb', line 3 def api_key @api_key end |
#email ⇒ Object (readonly)
Returns the value of attribute email.
3 4 5 |
# File 'lib/spade/credentials.rb', line 3 def email @email end |
Instance Method Details
#save(email, api_key) ⇒ Object
10 11 12 13 14 |
# File 'lib/spade/credentials.rb', line 10 def save(email, api_key) @email = email @api_key = api_key write end |