defmastership 1.0.1 → 1.0.2
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 +6 -3
- data/Gemfile.lock +10 -13
- data/defmastership.gemspec +3 -3
- data/lib/defmastership/version.rb +1 -1
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b45016ae06e0db331691dfa451bcbec39551dfc171803dd810138c82bc1fc473
|
|
4
|
+
data.tar.gz: 6fb6923a17b218501e145c4d97b03c8d8f63c6dee69b5d13d798878ae9ad39a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 99b26f5451be267846f6e637848564b5d1d894c2c401e2d03889502c61dc720dbabc05c7e10353522b84d328130a6eb53ceaa49ca9ca98e95b7bed8808e82cf3
|
|
7
|
+
data.tar.gz: 31396dc3513ca159e20f7198adf3bb0afd1568089452feb86af58147c91e65b263df2422b55f12a2aab079052c7749264410de50e4e3cfbb23d5a086bc961b88
|
data/.rubocop.yml
CHANGED
|
@@ -13,7 +13,7 @@ require:
|
|
|
13
13
|
- rubocop-rspec
|
|
14
14
|
|
|
15
15
|
AllCops:
|
|
16
|
-
TargetRubyVersion: 2.
|
|
16
|
+
TargetRubyVersion: 2.3
|
|
17
17
|
EnabledByDefault: true
|
|
18
18
|
DisplayCopNames: true
|
|
19
19
|
|
|
@@ -21,8 +21,11 @@ Style/Copyright:
|
|
|
21
21
|
Enabled: false
|
|
22
22
|
# AutocorrectNotice: 'Copyright 2020 by Jérôme Arbez-Gindre'
|
|
23
23
|
|
|
24
|
-
Lint/ConstantResolution:
|
|
25
|
-
|
|
24
|
+
# Lint/ConstantResolution: # Not available ins rubocop 0.81
|
|
25
|
+
# Enabled: false
|
|
26
|
+
|
|
27
|
+
Layout/LineLength:
|
|
28
|
+
Max: 120 # default for rubocop later than 0.81
|
|
26
29
|
|
|
27
30
|
Style/DocumentationMethod:
|
|
28
31
|
Enabled: false
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
defmastership (1.0.
|
|
4
|
+
defmastership (1.0.2)
|
|
5
5
|
aasm (~> 5)
|
|
6
6
|
asciidoctor (~> 2)
|
|
7
7
|
gli (~> 2)
|
|
@@ -11,7 +11,7 @@ GEM
|
|
|
11
11
|
specs:
|
|
12
12
|
aasm (5.1.1)
|
|
13
13
|
concurrent-ruby (~> 1.0)
|
|
14
|
-
activesupport (6.0.3.
|
|
14
|
+
activesupport (6.0.3.3)
|
|
15
15
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
16
16
|
i18n (>= 0.7, < 2)
|
|
17
17
|
minitest (~> 5.1)
|
|
@@ -54,7 +54,7 @@ GEM
|
|
|
54
54
|
cucumber-messages (~> 13.0, >= 13.0.1)
|
|
55
55
|
cucumber-html-formatter (9.0.0)
|
|
56
56
|
cucumber-messages (~> 13.0, >= 13.0.1)
|
|
57
|
-
cucumber-messages (13.0
|
|
57
|
+
cucumber-messages (13.1.0)
|
|
58
58
|
protobuf-cucumber (~> 3.10, >= 3.10.8)
|
|
59
59
|
cucumber-tag-expressions (2.0.4)
|
|
60
60
|
cucumber-wire (4.0.1)
|
|
@@ -67,6 +67,7 @@ GEM
|
|
|
67
67
|
gli (2.19.2)
|
|
68
68
|
i18n (1.8.5)
|
|
69
69
|
concurrent-ruby (~> 1.0)
|
|
70
|
+
jaro_winkler (1.5.4)
|
|
70
71
|
middleware (0.1.0)
|
|
71
72
|
minitest (5.14.2)
|
|
72
73
|
multi_test (0.1.2)
|
|
@@ -81,7 +82,6 @@ GEM
|
|
|
81
82
|
rainbow (3.0.0)
|
|
82
83
|
rake (13.0.1)
|
|
83
84
|
rdoc (6.2.1)
|
|
84
|
-
regexp_parser (1.7.1)
|
|
85
85
|
rexml (3.2.4)
|
|
86
86
|
rspec (3.9.0)
|
|
87
87
|
rspec-core (~> 3.9.0)
|
|
@@ -96,19 +96,16 @@ GEM
|
|
|
96
96
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
97
97
|
rspec-support (~> 3.9.0)
|
|
98
98
|
rspec-support (3.9.3)
|
|
99
|
-
rubocop (0.
|
|
99
|
+
rubocop (0.81.0)
|
|
100
|
+
jaro_winkler (~> 1.5.1)
|
|
100
101
|
parallel (~> 1.10)
|
|
101
|
-
parser (>= 2.7.
|
|
102
|
+
parser (>= 2.7.0.1)
|
|
102
103
|
rainbow (>= 2.2.2, < 4.0)
|
|
103
|
-
regexp_parser (>= 1.7)
|
|
104
104
|
rexml
|
|
105
|
-
rubocop-ast (>= 0.3.0, < 1.0)
|
|
106
105
|
ruby-progressbar (~> 1.7)
|
|
107
106
|
unicode-display_width (>= 1.4.0, < 2.0)
|
|
108
|
-
rubocop-
|
|
109
|
-
|
|
110
|
-
rubocop-rspec (1.43.2)
|
|
111
|
-
rubocop (~> 0.87)
|
|
107
|
+
rubocop-rspec (1.41.0)
|
|
108
|
+
rubocop (>= 0.68.1)
|
|
112
109
|
ruby-progressbar (1.10.1)
|
|
113
110
|
simplecov (0.19.0)
|
|
114
111
|
docile (~> 1.1)
|
|
@@ -132,7 +129,7 @@ DEPENDENCIES
|
|
|
132
129
|
rake (~> 13)
|
|
133
130
|
rdoc (~> 6)
|
|
134
131
|
rspec (~> 3)
|
|
135
|
-
rubocop (
|
|
132
|
+
rubocop (= 0.81)
|
|
136
133
|
rubocop-rspec (~> 1)
|
|
137
134
|
simplecov (~> 0)
|
|
138
135
|
|
data/defmastership.gemspec
CHANGED
|
@@ -9,13 +9,13 @@ require(File.join([
|
|
|
9
9
|
'version.rb'
|
|
10
10
|
]))
|
|
11
11
|
Gem::Specification.new do |s|
|
|
12
|
-
s.required_ruby_version = '>= 2.
|
|
12
|
+
s.required_ruby_version = '>= 2.3'
|
|
13
13
|
s.name = 'defmastership'
|
|
14
14
|
s.version = DefMastership::VERSION
|
|
15
15
|
s.author = 'Jérôme Arbez-Gindre'
|
|
16
16
|
s.email = 'jeromearbezgindre@gmail.com'
|
|
17
17
|
s.licenses = 'Nonstandard'
|
|
18
|
-
s.homepage = '
|
|
18
|
+
s.homepage = 'https://gitlab.com/jjag/defmastership/'
|
|
19
19
|
s.platform = Gem::Platform::RUBY
|
|
20
20
|
s.summary = 'Handling of references and definitions with asciidoctor'
|
|
21
21
|
s.files = `git ls-files`.split("\n")
|
|
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
|
|
|
28
28
|
s.add_development_dependency('rake', '~> 13')
|
|
29
29
|
s.add_development_dependency('rdoc', '~> 6')
|
|
30
30
|
s.add_development_dependency('rspec', '~> 3')
|
|
31
|
-
s.add_development_dependency('rubocop', '
|
|
31
|
+
s.add_development_dependency('rubocop', '0.81')
|
|
32
32
|
s.add_development_dependency('rubocop-rspec', '~> 1')
|
|
33
33
|
s.add_development_dependency('simplecov', '~> 0')
|
|
34
34
|
s.add_runtime_dependency('aasm', '~> 5')
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
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.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jérôme Arbez-Gindre
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-09-
|
|
11
|
+
date: 2020-09-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aruba
|
|
@@ -70,16 +70,16 @@ dependencies:
|
|
|
70
70
|
name: rubocop
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
|
-
- -
|
|
73
|
+
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '0'
|
|
75
|
+
version: '0.81'
|
|
76
76
|
type: :development
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
|
-
- -
|
|
80
|
+
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '0'
|
|
82
|
+
version: '0.81'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: rubocop-rspec
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -204,7 +204,7 @@ files:
|
|
|
204
204
|
- spec/unit/defmastership/project_ref_changer_spec.rb
|
|
205
205
|
- spec/unit/defmastership/ref_changer_spec.rb
|
|
206
206
|
- spec/unit/defmastership_spec.rb
|
|
207
|
-
homepage:
|
|
207
|
+
homepage: https://gitlab.com/jjag/defmastership/
|
|
208
208
|
licenses:
|
|
209
209
|
- Nonstandard
|
|
210
210
|
metadata: {}
|
|
@@ -220,7 +220,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
220
220
|
requirements:
|
|
221
221
|
- - ">="
|
|
222
222
|
- !ruby/object:Gem::Version
|
|
223
|
-
version: '2.
|
|
223
|
+
version: '2.3'
|
|
224
224
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
225
225
|
requirements:
|
|
226
226
|
- - ">="
|