asciidoctor-defmastership 1.0.1 → 1.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +4 -3
- data/Gemfile +1 -0
- data/Gemfile.lock +3 -3
- data/LICENCE +22 -0
- data/Rakefile +1 -0
- data/asciidoctor-defmastership.gemspec +3 -3
- data/bin/console +1 -0
- data/lib/asciidoctor/defmastership.rb +1 -0
- data/lib/asciidoctor/defmastership/extension.rb +1 -0
- data/lib/asciidoctor/defmastership/version.rb +2 -1
- metadata +5 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 169092c90c36cb4a55b2407ab7bac3e801dc0f90abdbbe34bc3c79807f06ef08
|
4
|
+
data.tar.gz: 85d8e158b4d1f1cface1b413cdb787c19344f6567576cd2b79434bf5582b07a8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b95f2f520e74d82002fb0faeb103380960bb84499a3eb215eff431828a3ffee3a84aceb6f44963d256d90782d1dc7261f3347a1e94a9b495e030ee1474385d4f
|
7
|
+
data.tar.gz: 6e8a6ab98ec583323c84a0dfc4761f8eea99e03ad07cd5be18375a92210384d3dcffea666ed4f510737174284551b0ccc5d44f11bb312e70fdc2137f7d3109d0
|
data/.rubocop.yml
CHANGED
@@ -18,10 +18,11 @@ AllCops:
|
|
18
18
|
DisplayCopNames: true
|
19
19
|
|
20
20
|
Style/Copyright:
|
21
|
-
Enabled:
|
22
|
-
|
21
|
+
Enabled: true
|
22
|
+
Notice: 'Copyright (\(c\) )?2020 Jerome Arbez-Gindre'
|
23
|
+
AutocorrectNotice: '# Copyright (c) 2020 Jerome Arbez-Gindre'
|
23
24
|
|
24
|
-
Lint/ConstantResolution:
|
25
|
+
Lint/ConstantResolution:
|
25
26
|
Enabled: false
|
26
27
|
|
27
28
|
# Style/DocumentationMethod:
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
asciidoctor-defmastership (1.0.
|
4
|
+
asciidoctor-defmastership (1.0.2)
|
5
5
|
asciidoctor (~> 2.0)
|
6
|
-
defmastership (>= 1.0.
|
6
|
+
defmastership (>= 1.0.4, < 2.0)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
@@ -60,7 +60,7 @@ GEM
|
|
60
60
|
cucumber-core (~> 8.0, >= 8.0.1)
|
61
61
|
cucumber-cucumber-expressions (~> 10.3, >= 10.3.0)
|
62
62
|
cucumber-messages (~> 13.0, >= 13.0.1)
|
63
|
-
defmastership (1.0.
|
63
|
+
defmastership (1.0.4)
|
64
64
|
aasm (~> 5)
|
65
65
|
asciidoctor (~> 2)
|
66
66
|
gli (~> 2)
|
data/LICENCE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
MIT License
|
2
|
+
|
3
|
+
Copyright (c) 2020 Jérôme Arbez-Gindre, and the individual contributors
|
4
|
+
to asciidoctor-defmastership.
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
7
|
+
of this software and associated documentation files (the "Software"), to deal
|
8
|
+
in the Software without restriction, including without limitation the rights
|
9
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
10
|
+
copies of the Software, and to permit persons to whom the Software is
|
11
|
+
furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included in
|
14
|
+
all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
19
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
20
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
21
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
22
|
+
THE SOFTWARE.
|
data/Rakefile
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# Copyright (c) 2020 Jerome Arbez-Gindre
|
2
2
|
# frozen_string_literal: true
|
3
3
|
|
4
4
|
lib = File.expand_path('lib', __dir__)
|
@@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
|
|
11
11
|
spec.version = Asciidoctor::DefMastership::VERSION
|
12
12
|
spec.authors = ['Jérôme Arbez-Gindre']
|
13
13
|
spec.email = ['jeromearbezgindre@gmail.com']
|
14
|
-
spec.licenses = '
|
14
|
+
spec.licenses = ['MIT']
|
15
15
|
|
16
16
|
spec.summary = %(asciidoctor extension to handle applicable
|
17
17
|
definition references)
|
@@ -40,5 +40,5 @@ Gem::Specification.new do |spec|
|
|
40
40
|
spec.add_development_dependency('rubocop-rspec', '~> 1')
|
41
41
|
|
42
42
|
spec.add_dependency('asciidoctor', '~> 2.0')
|
43
|
-
spec.add_dependency('defmastership', '>= 1.0.
|
43
|
+
spec.add_dependency('defmastership', '>= 1.0.4', '< 2.0')
|
44
44
|
end
|
data/bin/console
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: asciidoctor-defmastership
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jérôme Arbez-Gindre
|
@@ -100,7 +100,7 @@ dependencies:
|
|
100
100
|
requirements:
|
101
101
|
- - ">="
|
102
102
|
- !ruby/object:Gem::Version
|
103
|
-
version: 1.0.
|
103
|
+
version: 1.0.4
|
104
104
|
- - "<"
|
105
105
|
- !ruby/object:Gem::Version
|
106
106
|
version: '2.0'
|
@@ -110,7 +110,7 @@ dependencies:
|
|
110
110
|
requirements:
|
111
111
|
- - ">="
|
112
112
|
- !ruby/object:Gem::Version
|
113
|
-
version: 1.0.
|
113
|
+
version: 1.0.4
|
114
114
|
- - "<"
|
115
115
|
- !ruby/object:Gem::Version
|
116
116
|
version: '2.0'
|
@@ -131,6 +131,7 @@ files:
|
|
131
131
|
- ".travis.yml"
|
132
132
|
- Gemfile
|
133
133
|
- Gemfile.lock
|
134
|
+
- LICENCE
|
134
135
|
- README.md
|
135
136
|
- Rakefile
|
136
137
|
- asciidoctor-defmastership.gemspec
|
@@ -152,7 +153,7 @@ files:
|
|
152
153
|
- lib/asciidoctor/defmastership/version.rb
|
153
154
|
homepage: https://gitlab.com/jjag/asciidoctor-defmastership/
|
154
155
|
licenses:
|
155
|
-
-
|
156
|
+
- MIT
|
156
157
|
metadata: {}
|
157
158
|
post_install_message:
|
158
159
|
rdoc_options: []
|