Class: GoogleText::Account
- Inherits:
-
Object
- Object
- GoogleText::Account
- Defined in:
- lib/google_text/account.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#password ⇒ Object
Returns the value of attribute password.
Instance Method Summary collapse
-
#initialize(email, password) ⇒ Account
constructor
A new instance of Account.
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
#email ⇒ Object
Returns the value of attribute email.
3 4 5 |
# File 'lib/google_text/account.rb', line 3 def email @email end |
#password ⇒ Object
Returns the value of attribute password.
3 4 5 |
# File 'lib/google_text/account.rb', line 3 def password @password end |