Class: Concode::Dictionary
- Inherits:
-
Object
- Object
- Concode::Dictionary
- Defined in:
- lib/concode/dictionary.rb
Class Method Summary collapse
Class Method Details
.adjective_lengths ⇒ Object
12 13 14 |
# File 'lib/concode/dictionary.rb', line 12 def adjective_lengths @adjective_lengths ||= collect_lengths(adjectives) end |
.adjectives ⇒ Object
4 5 6 |
# File 'lib/concode/dictionary.rb', line 4 def adjectives @adjectives ||= adjectives! end |
.noun_lengths ⇒ Object
16 17 18 |
# File 'lib/concode/dictionary.rb', line 16 def noun_lengths @noun_lengths ||= collect_lengths(nouns) end |
.nouns ⇒ Object
8 9 10 |
# File 'lib/concode/dictionary.rb', line 8 def nouns @nouns ||= nouns! end |