Class: Warden::GoogleApps::User
- Inherits:
-
Struct
- Object
- Struct
- Warden::GoogleApps::User
- Defined in:
- lib/warden-googleapps/user.rb
Instance Attribute Summary collapse
-
#email ⇒ Object
Returns the value of attribute email.
-
#first_name ⇒ Object
Returns the value of attribute first_name.
-
#identity_url ⇒ Object
Returns the value of attribute identity_url.
-
#last_name ⇒ Object
Returns the value of attribute last_name.
Instance Method Summary collapse
Instance Attribute Details
#email ⇒ Object
Returns the value of attribute email
3 4 5 |
# File 'lib/warden-googleapps/user.rb', line 3 def email @email end |
#first_name ⇒ Object
Returns the value of attribute first_name
3 4 5 |
# File 'lib/warden-googleapps/user.rb', line 3 def first_name @first_name end |
#identity_url ⇒ Object
Returns the value of attribute identity_url
3 4 5 |
# File 'lib/warden-googleapps/user.rb', line 3 def identity_url @identity_url end |
#last_name ⇒ Object
Returns the value of attribute last_name
3 4 5 |
# File 'lib/warden-googleapps/user.rb', line 3 def last_name @last_name end |
Instance Method Details
#full_name ⇒ Object
4 5 6 |
# File 'lib/warden-googleapps/user.rb', line 4 def full_name "#{first_name} #{last_name}" end |