bible_robot 0.11 → 0.12
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +1 -1
- data/bible_robot.gemspec +6 -6
- data/lib/bible_robot.rb +4 -0
- data/lib/{bibleRobot → bible_robot}/book.rb +1 -1
- data/lib/{bibleRobot → bible_robot}/chapter.rb +1 -1
- data/lib/{bibleRobot → bible_robot}/robot.rb +0 -0
- data/lib/{bibleRobot → bible_robot}/watchtower.rb +1 -1
- data/spec/book_spec.rb +1 -1
- data/spec/chapter_spec.rb +1 -1
- data/spec/robot_spec.rb +1 -1
- data/spec/watchtower_spec.rb +1 -1
- metadata +8 -8
- data/lib/bibleRobot.rb +0 -4
data/Rakefile
CHANGED
@@ -21,7 +21,7 @@ Jeweler::Tasks.new do |gem|
|
|
21
21
|
gem.description = %Q{Aims to provide an easy way to get and parse the Bible from diffent sites. Actually, parsing it from watchtower.org}
|
22
22
|
gem.email = "rubem.nakamura@gmail.com"
|
23
23
|
gem.authors = ["Rubem Nakamura"]
|
24
|
-
gem.version = "0.
|
24
|
+
gem.version = "0.12"
|
25
25
|
gem.require_path = "lib"
|
26
26
|
end
|
27
27
|
Jeweler::RubygemsDotOrgTasks.new
|
data/bible_robot.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{bible_robot}
|
8
|
-
s.version = "0.
|
8
|
+
s.version = "0.12"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Rubem Nakamura"]
|
@@ -24,11 +24,11 @@ Gem::Specification.new do |s|
|
|
24
24
|
"README.rdoc",
|
25
25
|
"Rakefile",
|
26
26
|
"bible_robot.gemspec",
|
27
|
-
"lib/
|
28
|
-
"lib/
|
29
|
-
"lib/
|
30
|
-
"lib/
|
31
|
-
"lib/
|
27
|
+
"lib/bible_robot.rb",
|
28
|
+
"lib/bible_robot/book.rb",
|
29
|
+
"lib/bible_robot/chapter.rb",
|
30
|
+
"lib/bible_robot/robot.rb",
|
31
|
+
"lib/bible_robot/watchtower.rb",
|
32
32
|
"spec/book_spec.rb",
|
33
33
|
"spec/chapter_spec.rb",
|
34
34
|
"spec/fixtures/index.htm",
|
data/lib/bible_robot.rb
ADDED
File without changes
|
data/spec/book_spec.rb
CHANGED
data/spec/chapter_spec.rb
CHANGED
data/spec/robot_spec.rb
CHANGED
data/spec/watchtower_spec.rb
CHANGED
metadata
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bible_robot
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 19
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: "0.
|
8
|
+
- 12
|
9
|
+
version: "0.12"
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Rubem Nakamura
|
@@ -122,11 +122,11 @@ files:
|
|
122
122
|
- README.rdoc
|
123
123
|
- Rakefile
|
124
124
|
- bible_robot.gemspec
|
125
|
-
- lib/
|
126
|
-
- lib/
|
127
|
-
- lib/
|
128
|
-
- lib/
|
129
|
-
- lib/
|
125
|
+
- lib/bible_robot.rb
|
126
|
+
- lib/bible_robot/book.rb
|
127
|
+
- lib/bible_robot/chapter.rb
|
128
|
+
- lib/bible_robot/robot.rb
|
129
|
+
- lib/bible_robot/watchtower.rb
|
130
130
|
- spec/book_spec.rb
|
131
131
|
- spec/chapter_spec.rb
|
132
132
|
- spec/fixtures/index.htm
|
data/lib/bibleRobot.rb
DELETED