Class: Chordproko::Lyric
- Inherits:
-
Object
- Object
- Chordproko::Lyric
- Defined in:
- lib/chordproko/lyric.rb
Instance Attribute Summary collapse
-
#content ⇒ Object
Returns the value of attribute content.
Instance Method Summary collapse
- #each(&block) ⇒ Object
-
#initialize(content) ⇒ Lyric
constructor
A new instance of Lyric.
- #to_s ⇒ Object
Constructor Details
#initialize(content) ⇒ Lyric
Returns a new instance of Lyric.
4 5 6 |
# File 'lib/chordproko/lyric.rb', line 4 def initialize content @content = content end |
Instance Attribute Details
#content ⇒ Object
Returns the value of attribute content.
3 4 5 |
# File 'lib/chordproko/lyric.rb', line 3 def content @content end |
Instance Method Details
#each(&block) ⇒ Object
7 8 9 |
# File 'lib/chordproko/lyric.rb', line 7 def each(&block) [self].each(&block) end |
#to_s ⇒ Object
10 11 12 |
# File 'lib/chordproko/lyric.rb', line 10 def to_s "#{@content.to_s}" end |