Class: Buckley::Foo
Instance Attribute Summary collapse
-
#dob ⇒ Object
Returns the value of attribute dob.
-
#dot ⇒ Object
Returns the value of attribute dot.
Instance Method Summary collapse
-
#initialize(*a) ⇒ Foo
constructor
A new instance of Foo.
- #to_s ⇒ Object
Constructor Details
#initialize(*a) ⇒ Foo
5 6 |
# File 'lib/foo.rb', line 5 def initialize(*a) end |
Instance Attribute Details
#dob ⇒ Object
Returns the value of attribute dob.
12 13 14 |
# File 'lib/foo.rb', line 12 def dob @dob end |
#dot ⇒ Object
Returns the value of attribute dot.
12 13 14 |
# File 'lib/foo.rb', line 12 def dot @dot end |
Instance Method Details
#to_s ⇒ Object
8 9 10 |
# File 'lib/foo.rb', line 8 def to_s "A Foo object" end |