Bee Movie Gem for Ruby
Add this line to your application's Gemfile:
gem 'beemovie'
And then execute:
$ bundle install
Or install it yourself as:
$ gem install beemovie
Prints a sentence from the Bee Movie.
require 'beemovie'
# The Parameter can be any number
sentence = Beemovie::Barry.sentence(1)
puts sentence
Prints the enite Bee Movie script
require 'beemovie'
script = Beemovie::Barry.script
puts script
Prints words from the Bee Movie.
require 'beemovie'
# The Parameter can be any number
word = Beemovie::Barry.word(1)
puts word
Prints a paragraph from the Bee Movie.
require 'beemovie'
# The Parameter can be any number
paragraph = Beemovie::Barry.paragraph(1)
puts paragraph
This gem is available as open source under the terms of the MIT License.