ojxv 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +21 -0
  3. data/README.md +2 -0
  4. data/lib/ojxv/version.rb +3 -0
  5. data/lib/ojxv.rb +5 -0
  6. metadata +82 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 518bbd33a429a3ece2825afaeabe463a393f5bcb3161f9ab59bcc3042949b2a5
4
+ data.tar.gz: a562dbbe85156da40b63506b96dc89ab36c97948796712aafa6967064b48fd5d
5
+ SHA512:
6
+ metadata.gz: 21f2b1fffca14aafb2c2843d0ab003debce15e07a369faabb6ce530cf750b12e2e0eb51062f9fd04ac5ce5ad230e0df8104ad1ead83101357846a14291c255a8
7
+ data.tar.gz: 8676d1fcefb2bb2ed314c951e4ba4e4259b07b1ed18912defc20ac255a577ee303236373230008d9f79ec171dabb6c67ed1989fe3f68bd739f7db0184ce111d6
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Juanjo Bazán
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,2 @@
1
+ # OJXV
2
+ Open Journals XML Validator
@@ -0,0 +1,3 @@
1
+ module OJXV
2
+ VERSION = "0.0.2"
3
+ end
data/lib/ojxv.rb ADDED
@@ -0,0 +1,5 @@
1
+ require_relative "ojxv/version"
2
+
3
+ module OJXV
4
+ class Error < StandardError; end
5
+ end
metadata ADDED
@@ -0,0 +1,82 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ojxv
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.2
5
+ platform: ruby
6
+ authors:
7
+ - Juanjo Bazán
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2022-01-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 13.0.6
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 13.0.6
41
+ description: A library to validate XML outputs in the Open Journals' publishing pipeline
42
+ email:
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - LICENSE
48
+ - README.md
49
+ - lib/ojxv.rb
50
+ - lib/ojxv/version.rb
51
+ homepage: http://github.com/xuanxu/ojxv
52
+ licenses:
53
+ - MIT
54
+ metadata:
55
+ bug_tracker_uri: https://github.com/xuanxu/ojxv/issues
56
+ changelog_uri: https://github.com/xuanxu/ojxv/blob/main/CHANGELOG.md
57
+ documentation_uri: https://www.rubydoc.info/gems/ojxv
58
+ homepage_uri: http://github.com/xuanxu/ojxv
59
+ source_code_uri: http://github.com/xuanxu/ojxv
60
+ post_install_message:
61
+ rdoc_options:
62
+ - "--main"
63
+ - README.md
64
+ - "--charset=UTF-8"
65
+ require_paths:
66
+ - lib
67
+ required_ruby_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ required_rubygems_version: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ requirements: []
78
+ rubygems_version: 3.3.3
79
+ signing_key:
80
+ specification_version: 4
81
+ summary: Open Journals XML Validator
82
+ test_files: []