Method: Wordlist::File.read
- Defined in:
- lib/wordlist/file.rb
.read(path, **kwargs) {|word| ... } ⇒ Enumerator
Opens and reads the wordlist file.
101 102 103 |
# File 'lib/wordlist/file.rb', line 101 def self.read(path,**kwargs,&block) open(path,**kwargs).each(&block) end |