Class: GoogleText::Account

Inherits:
Object
  • Object
show all
Defined in:
lib/google_text/account.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(email, password) ⇒ Account

Returns a new instance of Account.



5
6
7
# File 'lib/google_text/account.rb', line 5

def initialize(email,password)
  @email, @password = email, password
end

Instance Attribute Details

#emailObject

Returns the value of attribute email.



3
4
5
# File 'lib/google_text/account.rb', line 3

def email
  @email
end

#passwordObject

Returns the value of attribute password.



3
4
5
# File 'lib/google_text/account.rb', line 3

def password
  @password
end