Class: String
- Inherits:
-
Object
- Object
- String
- Defined in:
- lib/first_gem_libby.rb
Instance Method Summary collapse
Instance Method Details
#unique_word_count ⇒ Object
10 11 12 |
# File 'lib/first_gem_libby.rb', line 10 def unique_word_count unique_words.count end |
#unique_words ⇒ Object
7 8 9 |
# File 'lib/first_gem_libby.rb', line 7 def unique_words self.split.uniq end |
#word_count ⇒ Object
4 5 6 |
# File 'lib/first_gem_libby.rb', line 4 def word_count self.split.count end |