Markov Chains
A simple random text generator from source text using markov chains.
Installation
Add this line to your application's Gemfile:
gem 'markov_chains'
And then execute:
$ bundle
Or install it yourself as:
$ gem install markov_chains
Usage
Create a generator and give it a source text:
text = "Why did the chicken cross the Mobius Strip?, To get to the same side..."
generator = MarkovChains::Generator.new(text)
Generate a number of sentences, here 5:
generator.get_sentences(5)
Contributing
- Fork it ( https://github.com/[justindomingue]/markov-chains/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request