Class: Resume::ContactsInformation

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeContactsInformation

Returns a new instance of ContactsInformation.



4
5
6
7
8
# File 'lib/yohan.rb', line 4

def initialize
  @name = "Yohan Lee"
  @phone_number = "347-522-6583"
  @email = "[email protected]"
end

Instance Attribute Details

#emailObject (readonly)

Returns the value of attribute email.



10
11
12
# File 'lib/yohan.rb', line 10

def email
  @email
end

#nameObject (readonly)

Returns the value of attribute name.



10
11
12
# File 'lib/yohan.rb', line 10

def name
  @name
end

#phone_numberObject (readonly)

Returns the value of attribute phone_number.



10
11
12
# File 'lib/yohan.rb', line 10

def phone_number
  @phone_number
end