modulorails 1.0.0 → 1.0.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 +17 -0
- data/CHANGELOG.md +6 -0
- data/lib/modulorails/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d9c1a33ace09742eb134cb8f41cf1aaac6f6687c8e9df97c91190aec0ca23034
|
|
4
|
+
data.tar.gz: 22e48b8dd51a0f187abc8a76f95af35224b6666b41b55851ef77a5a8a98d2450
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08b2eb1496c1c61f30674449f5f0c56c773203851559b83b38c2c0cbf2dc55b88e89fcdece0f9d0b4a8264cc6baeef50d9b42f5bd2b67ad953bfb6d884e15881'
|
|
7
|
+
data.tar.gz: e21f3ac1ba44ebfc00776ca0f04541bf97e505f0773f5f47a8c2e5299909f0339f2769c1478ebce043935751a282373a0940bef910fb96bd271e857a7155e6c5
|
data/.rubocop.yml
CHANGED
|
@@ -43,3 +43,20 @@ Rails/UnknownEnv:
|
|
|
43
43
|
- development
|
|
44
44
|
- test
|
|
45
45
|
- staging
|
|
46
|
+
- preprod
|
|
47
|
+
|
|
48
|
+
# Checks if String literals are using single quotes when no interpolation is required
|
|
49
|
+
Style/StringLiterals:
|
|
50
|
+
Enabled: true
|
|
51
|
+
EnforcedStyle: single_quotes
|
|
52
|
+
ConsistentQuotesInMultiline: false
|
|
53
|
+
|
|
54
|
+
# Checks if the quotes used for quoted symbols are single quotes when no interpolation is required
|
|
55
|
+
Style/QuotedSymbols:
|
|
56
|
+
Enabled: true
|
|
57
|
+
EnforcedStyle: same_as_string_literals
|
|
58
|
+
|
|
59
|
+
# This cop checks for uses of literal strings converted to a symbol where a literal symbol could be used instead.
|
|
60
|
+
Lint/SymbolConversion:
|
|
61
|
+
Enabled: true
|
|
62
|
+
EnforcedStyle: strict
|
data/CHANGELOG.md
CHANGED
data/lib/modulorails/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: modulorails
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.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: 2022-02-
|
|
11
|
+
date: 2022-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: railties
|