bible_ref 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/bible_ref/languages/english.rb +3 -3
- data/lib/bible_ref/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 713e5660beee03b87ff112d4d01f4eb4b6a4f1bb
|
4
|
+
data.tar.gz: 88554821a9ed3670ba51879633ffa5532ceb6feb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bbbb66972828bbf8eb74b07fa1ad842439e23ad58ced4340a594397dea7340a4d0ddebe6e52005e2b6cd588a6967b3a86c7d0d12d6819a328b5d55184a8e06ac
|
7
|
+
data.tar.gz: bad70186f6599b7235ba9b255c5a31ebc78adc82c5177eaafcef56832923221def4004e9b69f66f63389fefada7fbdc125a4c5d0e1d6e7eb5326f3b9e5de3142
|
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# BibleRef
|
2
2
|
|
3
3
|
This small Rubygem does its best at taking a user-input string like "john 3:16" and turning it into something useful
|
4
|
-
for querying a database (this is how we use it in [bible_api](https://github.com/
|
4
|
+
for querying a database (this is how we use it in [bible_api](https://github.com/churchio/bible_api)).
|
5
5
|
|
6
6
|
## Usage
|
7
7
|
|
@@ -20,7 +20,7 @@ module BibleRef
|
|
20
20
|
'2KI' => { match: /^2 ?(king|kgs|ki)/, name: '2 Kings' },
|
21
21
|
'1CH' => { match: /^1 ?chr?/, name: '1 Chronicles' },
|
22
22
|
'2CH' => { match: /^2 ?chr?/, name: '2 Chronicles' },
|
23
|
-
'EZR' => { match: /^
|
23
|
+
'EZR' => { match: /^ezr/, name: 'Ezra' },
|
24
24
|
'NEH' => { match: /^ne/, name: 'Nehemiah' },
|
25
25
|
'EST' => { match: /^est/, name: 'Esther' },
|
26
26
|
'JOB' => { match: /^jo?b/, name: 'Job' },
|
@@ -31,7 +31,7 @@ module BibleRef
|
|
31
31
|
'ISA' => { match: /^isa/, name: 'Isaiah' },
|
32
32
|
'JER' => { match: /^jer/, name: 'Jeremiah' },
|
33
33
|
'LAM' => { match: /^lam/, name: 'Lamentations' },
|
34
|
-
'EZK' => { match: /^ez/,
|
34
|
+
'EZK' => { match: /^ez(e|k)/, name: 'Ezekiel' },
|
35
35
|
'DAN' => { match: /^dan/, name: 'Daniel' },
|
36
36
|
'HOS' => { match: /^hos/, name: 'Hosea' },
|
37
37
|
'JOL' => { match: /^joe?l/, name: 'Joel' },
|
@@ -73,7 +73,7 @@ module BibleRef
|
|
73
73
|
'2CO' => { match: /^2 ?cor?/, name: '2 Corinthians' },
|
74
74
|
'GAL' => { match: /^gal/, name: 'Galatians' },
|
75
75
|
'EPH' => { match: /^eph/, name: 'Ephesians' },
|
76
|
-
'PHP' => { match: /^(
|
76
|
+
'PHP' => { match: /^(phill?i|php)/, name: 'Philippians' },
|
77
77
|
'COL' => { match: /^col/, name: 'Colossians' },
|
78
78
|
'1TH' => { match: /^1 ?the?s?/, name: '1 Thessalonians' },
|
79
79
|
'2TH' => { match: /^2 ?the?s?/, name: '2 Thessalonians' },
|
data/lib/bible_ref/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bible_ref
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tim Morgan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: parslet
|
@@ -92,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
92
92
|
version: '0'
|
93
93
|
requirements: []
|
94
94
|
rubyforge_project:
|
95
|
-
rubygems_version: 2.
|
95
|
+
rubygems_version: 2.4.8
|
96
96
|
signing_key:
|
97
97
|
specification_version: 4
|
98
98
|
summary: Bible reference parser
|