scriptures 0.0.6 → 0.0.7
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/README.md +10 -1
- data/lib/scriptures.rb +2 -0
- data/lib/scriptures/models/volume.rb +0 -1
- data/lib/scriptures/search.rb +5 -0
- data/lib/scriptures/version.rb +1 -1
- data/spec/{database_spec.rb → models_spec.rb} +0 -0
- data/spec/search_spec.rb +11 -0
- metadata +6 -3
data/README.md
CHANGED
@@ -28,10 +28,19 @@ Needs sqlite engine installed. My preference on OSX is to install through homebr
|
|
28
28
|
|
29
29
|
$ brew install sqlite
|
30
30
|
|
31
|
-
## Usage
|
31
|
+
## Usage Examples
|
32
32
|
|
33
33
|
require 'scriptures'
|
34
|
+
|
34
35
|
puts Scriptures::Verse.all(:scripture.like => "%faith%").first.scripture
|
36
|
+
|
37
|
+
puts Scripures.search("faith").count
|
38
|
+
|
39
|
+
## TODO
|
40
|
+
|
41
|
+
* Make search improvements.
|
42
|
+
* Improve Readme and describe API
|
43
|
+
|
35
44
|
|
36
45
|
## Contributing
|
37
46
|
|
data/lib/scriptures.rb
CHANGED
data/lib/scriptures/version.rb
CHANGED
File without changes
|
data/spec/search_spec.rb
ADDED
@@ -0,0 +1,11 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Scriptures do
|
4
|
+
it "returns scriptures on search" do
|
5
|
+
verse = Scriptures.search("faith").first.scripture
|
6
|
+
verse.should == "My servant Moses is not so, who is faithful in all mine house."
|
7
|
+
|
8
|
+
count = Scriptures.search("faith").count
|
9
|
+
count.should eql(820)
|
10
|
+
end
|
11
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: scriptures
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.7
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -60,11 +60,13 @@ files:
|
|
60
60
|
- lib/scriptures/models/chapter.rb
|
61
61
|
- lib/scriptures/models/verse.rb
|
62
62
|
- lib/scriptures/models/volume.rb
|
63
|
+
- lib/scriptures/search.rb
|
63
64
|
- lib/scriptures/setup.rb
|
64
65
|
- lib/scriptures/version.rb
|
65
66
|
- scriptures.db
|
66
67
|
- scriptures.gemspec
|
67
|
-
- spec/
|
68
|
+
- spec/models_spec.rb
|
69
|
+
- spec/search_spec.rb
|
68
70
|
- spec/spec_helper.rb
|
69
71
|
homepage: http://github.com/lukeholder/scriptures
|
70
72
|
licenses:
|
@@ -93,6 +95,7 @@ signing_key:
|
|
93
95
|
specification_version: 3
|
94
96
|
summary: The Scriptures
|
95
97
|
test_files:
|
96
|
-
- spec/
|
98
|
+
- spec/models_spec.rb
|
99
|
+
- spec/search_spec.rb
|
97
100
|
- spec/spec_helper.rb
|
98
101
|
has_rdoc:
|