modulorails 1.2.0 → 1.2.1
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 -2
- data/CHANGELOG.md +4 -0
- data/lib/modulorails/version.rb +1 -1
- data/modulorails.gemspec +0 -1
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 47ac5a151c8230d9ff0e9b775d32bd2a27eddbea284cf30aacf0bc863eb65a47
|
|
4
|
+
data.tar.gz: 180b663722790df15a3e180fbfe32a13f8743a57e28f6d74005d93ee08bf98b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a90d84b0c21e644e07d097e6c00b77af37dbfe1d43b1e1b4f75fd614fc7bc87bf86a93343e1362ab78a4321f1f1081bad4e3605a7c10dee082ab31cc346d102d
|
|
7
|
+
data.tar.gz: 9bcdf33285526a1ecca9dee4b05ab6d5f343280f8e9ec34427e428ab52786a11ab3235cf5ed77c5a1eb59163ff1dfb54d905c280068cf0f10032e47379c3c0e6
|
data/.rubocop.yml
CHANGED
|
@@ -101,12 +101,12 @@ Metrics/CyclomaticComplexity:
|
|
|
101
101
|
|
|
102
102
|
# Commonly used screens these days easily fit more than 80 characters.
|
|
103
103
|
Layout/LineLength:
|
|
104
|
-
Max:
|
|
104
|
+
Max: 120
|
|
105
105
|
|
|
106
106
|
# Too short methods lead to extraction of single-use methods, which can make
|
|
107
107
|
# the code easier to read (by naming things), but can also clutter the class
|
|
108
108
|
Metrics/MethodLength:
|
|
109
|
-
Max:
|
|
109
|
+
Max: 25
|
|
110
110
|
|
|
111
111
|
# The guiding principle of classes is SRP, SRP can't be accurately measured by LoC
|
|
112
112
|
Metrics/ClassLength:
|
|
@@ -264,3 +264,7 @@ Style/ParallelAssignment:
|
|
|
264
264
|
# Checks the style of children definitions at classes and modules.
|
|
265
265
|
Style/ClassAndModuleChildren:
|
|
266
266
|
Enabled: false
|
|
267
|
+
|
|
268
|
+
# Useful to display but it really is a bother to change it: hence the `info` severity.
|
|
269
|
+
Rails/I18nLocaleTexts:
|
|
270
|
+
Severity: info
|
data/CHANGELOG.md
CHANGED
data/lib/modulorails/version.rb
CHANGED
data/modulorails.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modulorails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matthieu Ciappara
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: git
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
|
-
- - ">="
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: 1.7.0
|
|
20
17
|
- - "~>"
|
|
21
18
|
- !ruby/object:Gem::Version
|
|
22
19
|
version: '1.7'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 1.7.0
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
|
-
- - ">="
|
|
28
|
-
- !ruby/object:Gem::Version
|
|
29
|
-
version: 1.7.0
|
|
30
27
|
- - "~>"
|
|
31
28
|
- !ruby/object:Gem::Version
|
|
32
29
|
version: '1.7'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 1.7.0
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: health_check
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -256,7 +256,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
256
256
|
- !ruby/object:Gem::Version
|
|
257
257
|
version: '0'
|
|
258
258
|
requirements: []
|
|
259
|
-
rubygems_version: 3.
|
|
259
|
+
rubygems_version: 3.3.7
|
|
260
260
|
signing_key:
|
|
261
261
|
specification_version: 4
|
|
262
262
|
summary: Common base for Ruby on Rails projects at Modulotech
|