Class: ReadWordTable
- Inherits:
-
Object
- Object
- ReadWordTable
- Defined in:
- lib/wordword/operations/read_word_table.rb
Instance Method Summary collapse
Instance Method Details
#call(filename:) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/wordword/operations/read_word_table.rb', line 10 def call(filename:) lines = yield read_file(filename) words = yield parse_lines(lines) Success(words) end |