Class: DogeLinguist

Inherits:
Object
  • Object
show all
Defined in:
lib/doge_linguist.rb,
lib/doge_linguist/version.rb

Constant Summary collapse

ADJECTIVES =
%w(so such very much many).freeze
VERSION =
"0.1.0"

Instance Method Summary collapse

Constructor Details

#initializeDogeLinguist

Returns a new instance of DogeLinguist.



7
8
9
# File 'lib/doge_linguist.rb', line 7

def initialize
  @tagger = EngTagger.new
end

Instance Method Details

#process(str) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/doge_linguist.rb', line 11

def process(str)
  # Convert input to lowercase.
  str = str.downcase

  # Extract nouns, prefixing each with one of the
  # above adjectives into sentences of 2 words.
  tagged_str = @tagger.add_tags(str)
  phrases = @tagger.get_nouns(tagged_str).keys
  phrases = phrases.each_with_index.map do |phrase, i|
    "#{adjective(i)} #{phrase}."
  end

  # End every input with "wow".
  phrases << 'wow.'

  # Return a string, separating each sentence
  # with a space.
  phrases.join(' ')
end