bible_ref 1.1.0 → 1.1.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6639093bb4ea9aa49aa9073fce5c3779d3bec6c0
4
- data.tar.gz: 4047132cea9a8ae54a532b87ed9060b3b8218b55
3
+ metadata.gz: 713e5660beee03b87ff112d4d01f4eb4b6a4f1bb
4
+ data.tar.gz: 88554821a9ed3670ba51879633ffa5532ceb6feb
5
5
  SHA512:
6
- metadata.gz: f7e4e30c897b7645fee8ed549577b9b5779149186b935b2b7d05fc1c9f978e42974ceff62819ea320bbb611492d2025968177b24228565bdda567cff0dbaf585
7
- data.tar.gz: 6ce26a3bbe73ae8f4f98ede403a30c8eeecdd6828bf6943c4ba7f6fd1ca38b9de6782b98975b24f0f545979419bcf913c7fe004f5259e494dc5547f3c66be607
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/seven1m/bible_api)).
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: /^ez/, name: 'Ezra' },
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/, name: 'Ezekiel' },
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: /^(phil|php)/, name: 'Philippians' },
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' },
@@ -1,3 +1,3 @@
1
1
  module BibleRef
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
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.0
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: 2015-05-21 00:00:00.000000000 Z
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.2.2
95
+ rubygems_version: 2.4.8
96
96
  signing_key:
97
97
  specification_version: 4
98
98
  summary: Bible reference parser