defmastership 1.0.3 → 1.0.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.
- checksums.yaml +4 -4
- data/.rubocop.yml +3 -2
- data/Gemfile +1 -0
- data/Gemfile.lock +1 -1
- data/LICENSE +22 -0
- data/Rakefile +1 -0
- data/bin/defmastership +1 -0
- data/defmastership.gemspec +2 -1
- data/features/step_definitions/defmastership_steps.rb +1 -0
- data/features/support/env.rb +1 -0
- data/lib/defmastership.rb +1 -0
- data/lib/defmastership/batch_changer.rb +1 -0
- data/lib/defmastership/comment_filter.rb +1 -0
- data/lib/defmastership/constants.rb +1 -0
- data/lib/defmastership/csv_formatter.rb +1 -0
- data/lib/defmastership/csv_formatter_body.rb +1 -0
- data/lib/defmastership/csv_formatter_header.rb +1 -0
- data/lib/defmastership/definition.rb +1 -0
- data/lib/defmastership/document.rb +1 -0
- data/lib/defmastership/project_ref_changer.rb +1 -0
- data/lib/defmastership/ref_changer.rb +1 -0
- data/lib/defmastership/version.rb +2 -1
- data/spec/spec_helper.rb +1 -0
- data/spec/unit/defmastership/batch_changer_spec.rb +1 -0
- data/spec/unit/defmastership/comment_filter_spec.rb +1 -0
- data/spec/unit/defmastership/csv_formatter_body_spec.rb +1 -0
- data/spec/unit/defmastership/csv_formatter_header_spec.rb +1 -0
- data/spec/unit/defmastership/csv_formatter_spec.rb +1 -0
- data/spec/unit/defmastership/definition_spec.rb +1 -0
- data/spec/unit/defmastership/document_spec.rb +1 -0
- data/spec/unit/defmastership/project_ref_changer_spec.rb +1 -0
- data/spec/unit/defmastership/ref_changer_spec.rb +1 -0
- data/spec/unit/defmastership_spec.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83b29fc13933c5a5030df105c476b86b0db8217d693c56786a1a8c5eec494a97
|
|
4
|
+
data.tar.gz: 686431e77ee50fc891ca72b1d1a569620cfff7591e30c279044ed49c02926281
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d87ef7737bbc86a2ad638ac473c2663a710a26d225e17fe1a00cfdea9facb27f01eb810863c03088296bd63d6f665c486d81fc06358cb3f01fcc11da6aef03ba
|
|
7
|
+
data.tar.gz: 76d543d058079e17bf95c1c495e74d3ccd6f410e07bfbe61f376d058272a08ba52e3c45b4bbc4f73d1838885d657cfe7ecb12ecf7a33eb8caa62e7e4e88afd51
|
data/.rubocop.yml
CHANGED
|
@@ -18,8 +18,9 @@ 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
25
|
Lint/ConstantResolution: # Not available ins rubocop 0.81
|
|
25
26
|
Enabled: false
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
data/LICENSE
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2020 Jérôme Arbez-Gindre, and the individual contributors
|
|
4
|
+
to 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
data/bin/defmastership
CHANGED
data/defmastership.gemspec
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
# Copyright (c) 2020 Jerome Arbez-Gindre
|
|
1
2
|
# frozen_string_literal: true
|
|
2
3
|
|
|
3
4
|
# Ensure we require the local version and not one we might have
|
|
@@ -14,7 +15,7 @@ Gem::Specification.new do |s|
|
|
|
14
15
|
s.version = DefMastership::VERSION
|
|
15
16
|
s.author = 'Jérôme Arbez-Gindre'
|
|
16
17
|
s.email = 'jeromearbezgindre@gmail.com'
|
|
17
|
-
s.licenses = '
|
|
18
|
+
s.licenses = ['MIT']
|
|
18
19
|
s.homepage = 'https://gitlab.com/jjag/defmastership/'
|
|
19
20
|
s.platform = Gem::Platform::RUBY
|
|
20
21
|
s.summary = 'Handling of references and definitions with asciidoctor'
|
data/features/support/env.rb
CHANGED
data/lib/defmastership.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: defmastership
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jérôme Arbez-Gindre
|
|
@@ -165,6 +165,7 @@ files:
|
|
|
165
165
|
- ".rubocop.yml"
|
|
166
166
|
- Gemfile
|
|
167
167
|
- Gemfile.lock
|
|
168
|
+
- LICENSE
|
|
168
169
|
- README.rdoc
|
|
169
170
|
- Rakefile
|
|
170
171
|
- bin/defmastership
|
|
@@ -207,7 +208,7 @@ files:
|
|
|
207
208
|
- spec/unit/defmastership_spec.rb
|
|
208
209
|
homepage: https://gitlab.com/jjag/defmastership/
|
|
209
210
|
licenses:
|
|
210
|
-
-
|
|
211
|
+
- MIT
|
|
211
212
|
metadata: {}
|
|
212
213
|
post_install_message:
|
|
213
214
|
rdoc_options:
|