votd 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG.md CHANGED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ * March 24, 2012 1.0.0 release
4
+ * Initial release with support for Bible.org's NETBible
5
+ * YARD documentation added
data/CONTRIBUTING.md CHANGED
@@ -1,5 +1,7 @@
1
+ # Contributing
2
+
1
3
  Inside of VotD's source is a module with classes and files referring
2
- to various Bible web APIs. By contributing to VotD with plugins you
4
+ to various Bible web services. By contributing to VotD with plugins you
3
5
  can help keep the gem fresh with new versions.
4
6
 
5
7
  The most basic way to get the code is to simply fork the code base on
@@ -17,4 +19,13 @@ Once your tests are done, work on the parsing system with your code,
17
19
  and you're ready to go!
18
20
 
19
21
  Just pop us a [Pull Request](https://github.com/doctorbh/votd/pulls)
20
- and you're code will be overviewed and ready to go soon.
22
+ and you're code will be overviewed and ready to go soon.
23
+
24
+ ## Summary
25
+
26
+ 1. Fork it
27
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
28
+ 3. Write passing tests/specs (we use [RSpec](http://rspec.info))
29
+ 4. Commit your changes (`git commit -am 'Added some feature'`)
30
+ 5. Push to the branch (`git push origin my-new-feature`)
31
+ 6. Create new Pull Request
data/README.md CHANGED
@@ -12,7 +12,7 @@ Other services are are planned:
12
12
  * [Bible Gateway](http://www.biblegateway.com) - Multiple Translations
13
13
  * [ESV Bible Web Service](http://www.esvapi.org/) - ESV Translation
14
14
 
15
- If you are able to contribute modules for any of these, please see our [CONTRIBUTING](CONTRIBUTING.md) file. Let us know before you begin work in case someone else has a module in-progress.
15
+ If you are able to contribute modules for any of these, please see our [CONTRIBUTING](http://rubydoc.info/gems/votd/file/CONTRIBUTING.md) file. Let us know before you begin work in case someone else has a module in-progress.
16
16
 
17
17
  ## Installation
18
18
 
@@ -63,20 +63,6 @@ Documentation may be found [here](http://rubydoc.info/gems/votd/file/README.md)
63
63
 
64
64
  Source code is available in our [GitHub repository](https://github.com/doctorbh/votd).
65
65
 
66
- ## Authors
67
-
68
- Christopher Clarke <beakr@ninjanizr.com>
69
-
70
- Stephen Clarke <doctorbh@ninjanizr.com>
71
-
72
- ## Changelog
73
-
74
- See our [CHANGELOG](CHANGELOG.md) file.
75
-
76
- ## TODO
77
-
78
- See our [TODO](TODO.md) file.
79
-
80
66
  ## Requests
81
67
 
82
68
  To submit bug, feature requests, patches see our [Issues List](https://github.com/doctorbh/votd/issues) on GitHub.
@@ -90,8 +76,24 @@ To submit bug, feature requests, patches see our [Issues List](https://github.co
90
76
  5. Push to the branch (`git push origin my-new-feature`)
91
77
  6. Create new Pull Request
92
78
 
93
- See more on [CONTRIBUTING](CONTRIBUTING.md).
79
+ See more on [CONTRIBUTING](http://rubydoc.info/gems/votd/file/CONTRIBUTING.md).
80
+
81
+ ## Changelog
82
+
83
+ See our [CHANGELOG](http://rubydoc.info/gems/votd/file/CHANGELOG.md) file.
84
+
85
+ ## TODO
86
+
87
+ See our [TODO](http://rubydoc.info/gems/votd/file/TODO.md) file.
88
+
89
+ ## Authors
90
+
91
+ Christopher Clarke <beakr@ninjanizr.com>
92
+
93
+ Stephen Clarke <doctorbh@ninjanizr.com>
94
94
 
95
95
  ## Copyright
96
96
 
97
- &copy; 2012 Christopher Clarke, Stephen Clarke. See LICENSE for details.
97
+ (The MIT License)
98
+
99
+ &copy; 2012 Christopher Clarke, Stephen Clarke. See [LICENSE](http://rubydoc.info/gems/votd/1.0.0/file/LICENSE) for details.
data/TODO.md CHANGED
@@ -1,11 +1,9 @@
1
1
  ## Todo
2
2
 
3
- * Generate an appropriate VotD from a static file if there's any error communicating with the VotD API. (e.g. John 3:16).
3
+ * Generate an appropriate VOTD from a static file if there's any error communicating with the VOTD API. (suggest something like John 3:16).
4
4
 
5
- * Update `votd` command-line version.
5
+ * Update `votd` command-line version to. Currently only a bare stub of an app.
6
6
 
7
- * Integrate [ESV VOTD service](http://www.esvapi.org/api)
7
+ * Integrate [ESV API](http://www.esvapi.org/api)
8
8
 
9
- * Integrate [Bible Gateway](http://www.biblegateway.com/)
10
-
11
- * Make compatible with Ruby < 1.9
9
+ * Ensure Ruby < 1.9 compatibility.
data/lib/votd/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Votd
2
2
  # Gem version number
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
data/votd.gemspec CHANGED
@@ -4,7 +4,7 @@ require File.expand_path('../lib/votd/version', __FILE__)
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["Steve Clarke", "Chris Clarke"]
6
6
  gem.email = ["doctorbh@ninjanizr.com", "beakr@ninjanizr.com"]
7
- gem.summary = %q{Generate a (Bible) Verse of the Day using various Web-API wrappers}
7
+ gem.summary = %q{Generate a (Bible) Verse of the Day using various web service wrappers}
8
8
  gem.homepage = "https://github.com/doctorbh/votd"
9
9
 
10
10
  gem.files = `git ls-files`.split($\)
@@ -19,9 +19,10 @@ Gem::Specification.new do |gem|
19
19
 
20
20
  gem.add_runtime_dependency "httparty"
21
21
 
22
+ gem.add_development_dependency "rake"
22
23
  gem.add_development_dependency "fakeweb"
23
24
  gem.add_development_dependency "rspec"
24
25
  gem.add_development_dependency "guard-rspec"
25
26
  gem.add_development_dependency "yard"
26
27
  gem.add_development_dependency "redcarpet"
27
- end
28
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: votd
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -28,6 +28,22 @@ dependencies:
28
28
  - - ! '>='
29
29
  - !ruby/object:Gem::Version
30
30
  version: '0'
31
+ - !ruby/object:Gem::Dependency
32
+ name: rake
33
+ requirement: !ruby/object:Gem::Requirement
34
+ none: false
35
+ requirements:
36
+ - - ! '>='
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ type: :development
40
+ prerelease: false
41
+ version_requirements: !ruby/object:Gem::Requirement
42
+ none: false
43
+ requirements:
44
+ - - ! '>='
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
31
47
  - !ruby/object:Gem::Dependency
32
48
  name: fakeweb
33
49
  requirement: !ruby/object:Gem::Requirement
@@ -162,7 +178,7 @@ rubyforge_project:
162
178
  rubygems_version: 1.8.21
163
179
  signing_key:
164
180
  specification_version: 3
165
- summary: Generate a (Bible) Verse of the Day using various Web-API wrappers
181
+ summary: Generate a (Bible) Verse of the Day using various web service wrappers
166
182
  test_files:
167
183
  - spec/fixtures/netbible.html
168
184
  - spec/fixtures/netbible.json