Class: Spade::Credentials

Inherits:
Object
  • Object
show all
Defined in:
lib/spade/credentials.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_keyObject (readonly)

Returns the value of attribute api_key.



3
4
5
# File 'lib/spade/credentials.rb', line 3

def api_key
  @api_key
end

#emailObject (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