README.md in bible_gateway-0.0.12 vs README.md in bible_gateway-0.1.0
- old
+ new
@@ -20,18 +20,31 @@
$ gem install bible_gateway
## Usage
- BibleGateway.versions # available versions
+```
+require 'bible_gateway'
- b = BibleGateway.new # defaults to :king_james_version, but can be initialized to different version
- b.version = :english_standard_version
- b.lookup('John 1:1') # => "<h4>John 1</h4>\n<h5>The Word Became Flesh</h5> <sup>1</sup> In the beginning was the Word, and the Word was with God, and the Word was God."
+BibleGateway.versions # available versions
-## Todo
+BibleGateway.versions # available versions
-* Add other versions that are available
+b = BibleGateway.new # defaults to :king_james_version, but can be initialized to different version
+
+b.version = :english_standard_version
+b.lookup('John 1:1') # => "<h4>John 1</h4>\n<h5>The Word Became Flesh</h5> <sup>1</sup> In the beginning was the Word, and the Word was with God, and the Word was God."
+```
+
+## Scraping the old site through old_lookup
+
+```
+require 'bible_gateway'
+
+b = BibleGateway.new # defaults to :king_james_version, but can be initialized to different version
+
+b.old_lookup('John 1:1') # scraping the old site
+```
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)