usfx 0.1.3 → 0.1.4

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.
Files changed (4) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +1 -0
  3. data/lib/usfx/document.rb +2 -2
  4. metadata +13 -17
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 66dd8da00349e264ce30f198bb9d1b196f404b94
4
+ data.tar.gz: 998f8e0a76680a9439dc73fbae8904963588f4ec
5
+ SHA512:
6
+ metadata.gz: e8b7ef188143bc5e9e140ee4ba5dfc2576e03f24342c0d1e85e05b2505f8ff18fa5323052792ffb35f11eb51048b1f0cf91ee33f1af992f70d3f1c8c3aa15024
7
+ data.tar.gz: 7e9688bae893908dea95c43b112b206ce722ae8b481ac85e6d7069678121caca22063f13bf033c360c3f433a06202c5a9ea9bb7472e33141ab8615eb0cbc008f
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ test
1
2
  # USFX
2
3
 
3
4
  This is a very simple SAX Document and Nokogiri SAX Parser for reading [Unified Scripture Format XML](http://ebible.org/usfx/) (USFX) files as a stream and doing something interesting with the verse data.
@@ -27,7 +27,7 @@ module USFX
27
27
  start_verse(attributes)
28
28
  when 've'
29
29
  end_verse
30
- when 'f'
30
+ when 'f', 'x'
31
31
  start_footnote(attributes)
32
32
  end
33
33
  end
@@ -37,7 +37,7 @@ module USFX
37
37
  case name
38
38
  when 'h'
39
39
  end_book_title
40
- when 'f'
40
+ when 'f', 'x'
41
41
  end_footnote
42
42
  end
43
43
  end
metadata CHANGED
@@ -1,30 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: usfx
3
3
  version: !ruby/object:Gem::Version
4
- prerelease:
5
- version: 0.1.3
4
+ version: 0.1.4
6
5
  platform: ruby
7
6
  authors:
8
7
  - Tim Morgan
9
8
  autorequire:
10
9
  bindir: bin
11
10
  cert_chain: []
12
- date: 2013-06-21 00:00:00.000000000 Z
11
+ date: 2014-07-07 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
- prerelease: false
16
- type: :runtime
17
14
  name: nokogiri
18
- version_requirements: !ruby/object:Gem::Requirement
19
- none: false
15
+ requirement: !ruby/object:Gem::Requirement
20
16
  requirements:
21
- - - ! '>='
17
+ - - ">="
22
18
  - !ruby/object:Gem::Version
23
19
  version: 1.6.0
24
- requirement: !ruby/object:Gem::Requirement
25
- none: false
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
- - - ! '>='
24
+ - - ">="
28
25
  - !ruby/object:Gem::Version
29
26
  version: 1.6.0
30
27
  description:
@@ -39,26 +36,25 @@ files:
39
36
  - lib/usfx/parser.rb
40
37
  homepage: https://github.com/seven1m/usfx
41
38
  licenses: []
39
+ metadata: {}
42
40
  post_install_message:
43
41
  rdoc_options: []
44
42
  require_paths:
45
43
  - lib
46
44
  required_ruby_version: !ruby/object:Gem::Requirement
47
- none: false
48
45
  requirements:
49
- - - ! '>='
46
+ - - ">="
50
47
  - !ruby/object:Gem::Version
51
48
  version: '0'
52
49
  required_rubygems_version: !ruby/object:Gem::Requirement
53
- none: false
54
50
  requirements:
55
- - - ! '>='
51
+ - - ">="
56
52
  - !ruby/object:Gem::Version
57
53
  version: '0'
58
54
  requirements: []
59
55
  rubyforge_project:
60
- rubygems_version: 1.8.25
56
+ rubygems_version: 2.2.2
61
57
  signing_key:
62
- specification_version: 3
58
+ specification_version: 4
63
59
  summary: Ruby stream parser for Unified Scripture Format XML (USFX)
64
60
  test_files: []