bible_passage 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b4b4b875333c8c0752f13e6a2de2638e41d4cfb0
4
- data.tar.gz: 66f0275e662976d67e728451dd88f050428c8078
3
+ metadata.gz: bf622f06c1242c67eb2a34b5b929088b01586962
4
+ data.tar.gz: 4de690f1b893d68634dea13519dfd0e6ba1af922
5
5
  SHA512:
6
- metadata.gz: 32f934c2accc408fdb71db8b41a184ffeb2b8c3142e5d9d8800c861e01f4f51794daf40bf3ba7c09ce5344009b207418a73ce7ade77d70093a29e535f22b2f33
7
- data.tar.gz: 424679412f391d8c395234d82bbe15d7cd5de7cb4ce0628ce4bc737dca45d6b28dbb30692f5597e852584134e83d53a496bec92eb61d49830d90934490467992
6
+ metadata.gz: 82873b7450db0f14a4ef53f4e50aca713aa862dfc180db355cdc17e0a53dc53717b534c8a543124fb41d67c2e6f3980a2166f74ce1783a3528497aa00d5cfded
7
+ data.tar.gz: b5b91cdfd1f165ecfab92d120c9982ef8128deabb673c31951de5eca99590f1fb9d0d527ff18bcdfff10c8a9bad982f566a422418ef8279587c0ffba3fbaf717
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bible_passage (0.0.2)
4
+ bible_passage (0.0.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -21,7 +21,7 @@ GEM
21
21
  lumberjack (~> 1.0)
22
22
  pry (>= 0.9.12)
23
23
  thor (>= 0.18.1)
24
- guard-rspec (4.2.10)
24
+ guard-rspec (4.3.1)
25
25
  guard (~> 2.1)
26
26
  rspec (>= 2.14, < 4.0)
27
27
  listen (2.7.9)
@@ -41,16 +41,16 @@ GEM
41
41
  rspec-core (~> 3.0.0)
42
42
  rspec-expectations (~> 3.0.0)
43
43
  rspec-mocks (~> 3.0.0)
44
- rspec-core (3.0.2)
44
+ rspec-core (3.0.3)
45
45
  rspec-support (~> 3.0.0)
46
- rspec-expectations (3.0.2)
46
+ rspec-expectations (3.0.3)
47
47
  diff-lcs (>= 1.2.0, < 2.0)
48
48
  rspec-support (~> 3.0.0)
49
- rspec-mocks (3.0.2)
49
+ rspec-mocks (3.0.3)
50
50
  rspec-support (~> 3.0.0)
51
- rspec-support (3.0.2)
51
+ rspec-support (3.0.3)
52
52
  ruby-progressbar (1.5.1)
53
- slop (3.5.0)
53
+ slop (3.6.0)
54
54
  thor (0.19.1)
55
55
  timers (1.1.0)
56
56
 
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'bible_passage'
3
3
  s.summary = 'A simple library for parsing and rendering bible passages'
4
- s.version = '0.1.0'
4
+ s.version = '0.1.1'
5
5
  s.authors = ["Si Wilkins"]
6
6
  s.email = 'si.wilkins@gmail.com'
7
7
  s.homepage = 'https://github.com/siwilkins/bible_passage'
@@ -53,17 +53,17 @@ module BiblePassage
53
53
  '2 sam'.to_sym => '2sam'.to_sym,
54
54
  '2 samuel'.to_sym => '2sam'.to_sym,
55
55
 
56
- '1 kgs'.to_sym => '1kgs'.to_sym,
57
- '1 ki'.to_sym => '1kgs'.to_sym,
58
- '1 king'.to_sym => '1kgs'.to_sym,
59
- '1 kings'.to_sym => '1kgs'.to_sym,
60
- '1 kngs'.to_sym => '1kgs'.to_sym,
61
-
62
- '2 kgs'.to_sym => '2kgs'.to_sym,
63
- '2 ki'.to_sym => '2kgs'.to_sym,
64
- '2 king'.to_sym => '2kgs'.to_sym,
65
- '2 kings'.to_sym => '2kgs'.to_sym,
66
- '2 kngs'.to_sym => '2kgs'.to_sym,
56
+ '1 kgs'.to_sym => '1kings'.to_sym,
57
+ '1 ki'.to_sym => '1kings'.to_sym,
58
+ '1 king'.to_sym => '1kings'.to_sym,
59
+ '1 kings'.to_sym => '1kings'.to_sym,
60
+ '1 kngs'.to_sym => '1kings'.to_sym,
61
+
62
+ '2 kgs'.to_sym => '2kings'.to_sym,
63
+ '2 ki'.to_sym => '2kings'.to_sym,
64
+ '2 king'.to_sym => '2kings'.to_sym,
65
+ '2 kings'.to_sym => '2kings'.to_sym,
66
+ '2 kngs'.to_sym => '2kings'.to_sym,
67
67
 
68
68
  '1 ch'.to_sym => '1chr'.to_sym,
69
69
  '1 chr'.to_sym => '1chr'.to_sym,
@@ -61,17 +61,17 @@ describe BiblePassage::BookKeyTranslator do
61
61
  it_translates_to_key("2 sam", '2sam'.to_sym)
62
62
  it_translates_to_key("2 sa", '2sam'.to_sym)
63
63
 
64
- it_translates_to_key("1 kings", '1kgs'.to_sym)
65
- it_translates_to_key("1 king", '1kgs'.to_sym)
66
- it_translates_to_key("1 ki", '1kgs'.to_sym)
67
- it_translates_to_key("1 kngs", '1kgs'.to_sym)
68
- it_translates_to_key("1 kgs", '1kgs'.to_sym)
69
-
70
- it_translates_to_key("2 kings", '2kgs'.to_sym)
71
- it_translates_to_key("2 king", '2kgs'.to_sym)
72
- it_translates_to_key("2 ki", '2kgs'.to_sym)
73
- it_translates_to_key("2 kngs", '2kgs'.to_sym)
74
- it_translates_to_key("2 kgs", '2kgs'.to_sym)
64
+ it_translates_to_key("1 kings", '1kings'.to_sym)
65
+ it_translates_to_key("1 king", '1kings'.to_sym)
66
+ it_translates_to_key("1 ki", '1kings'.to_sym)
67
+ it_translates_to_key("1 kngs", '1kings'.to_sym)
68
+ it_translates_to_key("1 kgs", '1kings'.to_sym)
69
+
70
+ it_translates_to_key("2 kings", '2kings'.to_sym)
71
+ it_translates_to_key("2 king", '2kings'.to_sym)
72
+ it_translates_to_key("2 ki", '2kings'.to_sym)
73
+ it_translates_to_key("2 kngs", '2kings'.to_sym)
74
+ it_translates_to_key("2 kgs", '2kings'.to_sym)
75
75
 
76
76
  it_translates_to_key("1 chronicles", '1chr'.to_sym)
77
77
  it_translates_to_key("1 chron", '1chr'.to_sym)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bible_passage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Si Wilkins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-03 00:00:00.000000000 Z
11
+ date: 2014-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec