Class: MarkovChainChatBot::Word
- Defined in:
- lib/markov_chain_chat_bot.rb
Class Method Summary collapse
Methods inherited from Token
Class Method Details
.===(x) ⇒ Object
142 143 144 |
# File 'lib/markov_chain_chat_bot.rb', line 142 def self.===(x) x.is_a? String and x[0] == "w" end |
.new(value) ⇒ Object
138 139 140 |
# File 'lib/markov_chain_chat_bot.rb', line 138 def self.new(value) "w" + value end |