bible_robot 0.11 → 0.12

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/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.11"
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.11"
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/bibleRobot.rb",
28
- "lib/bibleRobot/book.rb",
29
- "lib/bibleRobot/chapter.rb",
30
- "lib/bibleRobot/robot.rb",
31
- "lib/bibleRobot/watchtower.rb",
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",
@@ -0,0 +1,4 @@
1
+ require 'bible_robot/book'
2
+ require 'bible_robot/chapter'
3
+ require 'bible_robot/robot'
4
+ require 'bible_robot/watchtower'
@@ -1,4 +1,4 @@
1
- require 'bibleRobot'
1
+ require 'bible_robot'
2
2
 
3
3
  class Book
4
4
 
@@ -1,4 +1,4 @@
1
- require "bibleRobot"
1
+ require 'bible_robot'
2
2
 
3
3
  class Chapter
4
4
 
File without changes
@@ -1,4 +1,4 @@
1
- require 'bibleRobot'
1
+ require 'bible_robot'
2
2
  require 'sanitize'
3
3
  require 'hpricot'
4
4
  require 'uri'
data/spec/book_spec.rb CHANGED
@@ -1,4 +1,4 @@
1
- require "bibleRobot"
1
+ require "bible_robot"
2
2
 
3
3
  describe "Book" do
4
4
 
data/spec/chapter_spec.rb CHANGED
@@ -1,4 +1,4 @@
1
- require "bibleRobot"
1
+ require "bible_robot"
2
2
 
3
3
  describe "Book" do
4
4
 
data/spec/robot_spec.rb CHANGED
@@ -1,4 +1,4 @@
1
- require "bibleRobot"
1
+ require "bible_robot"
2
2
 
3
3
  describe "Robot" do
4
4
 
@@ -1,4 +1,4 @@
1
- require "bibleRobot"
1
+ require "bible_robot"
2
2
  require 'hpricot'
3
3
 
4
4
  describe "Watchtower" do
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: 29
4
+ hash: 19
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
- - 11
9
- version: "0.11"
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/bibleRobot.rb
126
- - lib/bibleRobot/book.rb
127
- - lib/bibleRobot/chapter.rb
128
- - lib/bibleRobot/robot.rb
129
- - lib/bibleRobot/watchtower.rb
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
@@ -1,4 +0,0 @@
1
- require 'bibleRobot/book'
2
- require 'bibleRobot/chapter'
3
- require 'bibleRobot/robot'
4
- require 'bibleRobot/watchtower'