Class: WordsDotDat
- Inherits:
-
Object
- Object
- WordsDotDat
- Defined in:
- lib/wordsdotdat.rb
Class Method Summary collapse
- .adjs ⇒ Object
- .nouns ⇒ Object
- .words ⇒ Object (also: list)
Class Method Details
.adjs ⇒ Object
12 |
# File 'lib/wordsdotdat.rb', line 12 def adjs() @adjs ||= load_data 'adjs.dat' end |
.nouns ⇒ Object
13 |
# File 'lib/wordsdotdat.rb', line 13 def nouns() @nouns ||= load_data 'nouns.dat' end |
.words ⇒ Object Also known as: list
14 |
# File 'lib/wordsdotdat.rb', line 14 def words() adjs + nouns end |