Scripture
Provides easy access to bible verses in your application.
Installation
Add this line to your application's Gemfile:
gem 'scripture'
And then execute:
$ bundle
Or install it yourself as:
$ gem install scripture
Usage
From the commandline
$ scripture lookup 'John 3:16'
From your code
require 'scripture'
verse = Scripture.get_verse('John 3:16')
puts verse
Also supports multiple verses
John 3:16-17
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Added some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request