Dutchie-Style 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Dutchie-Style.gemspec +1 -0
- data/Gemfile +1 -0
- data/Gemfile.lock +23 -2
- data/default.yml +12 -1
- data/lib/Dutchie/Style/version.rb +1 -1
- metadata +17 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e468aaa0d1b3a2c4877de050be077ea8a93e2e280007db7ede1f9aeb4b773c9c
|
4
|
+
data.tar.gz: 1715ea7143ef7367b3e3d751178a360ba35dc6933d1a55f72d499c54ecd824da
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2dd438aa0842f9e9defa1a85368cb2cbe3f9e4fcea76f67a46f173584aab130c69503a09d3e25333f0cb3dce8c67cd25af8f075b4e5a1ff8ba2d9188aec4ac2c
|
7
|
+
data.tar.gz: 1c866fe9b66a6d54bfcdb8382c78b9cb5c28313e190028d9cee801a6337d3cbd0948478571de1bf5f886529ae7ad517a0a9d3b4d469ea518dc888c6fcfda8ac1
|
data/Dutchie-Style.gemspec
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,18 +1,30 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
Dutchie-Style (1.0.
|
4
|
+
Dutchie-Style (1.0.3)
|
5
5
|
rubocop (~> 0.86.0)
|
6
|
+
rubocop-rails
|
6
7
|
rubocop-rspec
|
7
8
|
|
8
9
|
GEM
|
9
10
|
remote: https://rubygems.org/
|
10
11
|
specs:
|
12
|
+
activesupport (6.0.3.2)
|
13
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
14
|
+
i18n (>= 0.7, < 2)
|
15
|
+
minitest (~> 5.1)
|
16
|
+
tzinfo (~> 1.1)
|
17
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
11
18
|
ast (2.4.1)
|
19
|
+
concurrent-ruby (1.1.7)
|
12
20
|
diff-lcs (1.4.2)
|
21
|
+
i18n (1.8.5)
|
22
|
+
concurrent-ruby (~> 1.0)
|
23
|
+
minitest (5.14.2)
|
13
24
|
parallel (1.19.2)
|
14
25
|
parser (2.7.1.4)
|
15
26
|
ast (~> 2.4.1)
|
27
|
+
rack (2.2.3)
|
16
28
|
rainbow (3.0.0)
|
17
29
|
rake (12.3.3)
|
18
30
|
regexp_parser (1.7.1)
|
@@ -41,10 +53,18 @@ GEM
|
|
41
53
|
unicode-display_width (>= 1.4.0, < 2.0)
|
42
54
|
rubocop-ast (0.0.3)
|
43
55
|
parser (>= 2.7.0.1)
|
44
|
-
rubocop-
|
56
|
+
rubocop-rails (2.6.0)
|
57
|
+
activesupport (>= 4.2.0)
|
58
|
+
rack (>= 1.1)
|
59
|
+
rubocop (>= 0.82.0)
|
60
|
+
rubocop-rspec (1.41.0)
|
45
61
|
rubocop (>= 0.68.1)
|
46
62
|
ruby-progressbar (1.10.1)
|
63
|
+
thread_safe (0.3.6)
|
64
|
+
tzinfo (1.2.7)
|
65
|
+
thread_safe (~> 0.1)
|
47
66
|
unicode-display_width (1.7.0)
|
67
|
+
zeitwerk (2.4.0)
|
48
68
|
|
49
69
|
PLATFORMS
|
50
70
|
ruby
|
@@ -54,6 +74,7 @@ DEPENDENCIES
|
|
54
74
|
rake (~> 12.0)
|
55
75
|
rspec (~> 3.0)
|
56
76
|
rubocop (~> 0.86)
|
77
|
+
rubocop-rails (~> 2.6.0)
|
57
78
|
|
58
79
|
BUNDLED WITH
|
59
80
|
2.1.4
|
data/default.yml
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
require:
|
2
2
|
- rubocop-rspec
|
3
|
+
- rubocop-rails
|
3
4
|
|
4
5
|
AllCops:
|
5
6
|
TargetRubyVersion: 2.6
|
@@ -218,4 +219,14 @@ Naming/BinaryOperatorParameterName:
|
|
218
219
|
Enabled: false
|
219
220
|
|
220
221
|
Lint/ConstantResolution:
|
221
|
-
Enabled: false
|
222
|
+
Enabled: false
|
223
|
+
|
224
|
+
|
225
|
+
# Rails
|
226
|
+
Rails/SaveBang:
|
227
|
+
Enabled: false
|
228
|
+
|
229
|
+
Rails/FindBy:
|
230
|
+
Enabled: true
|
231
|
+
Include:
|
232
|
+
- app/**/*.rb
|
metadata
CHANGED
@@ -1,24 +1,24 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: Dutchie-Style
|
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
|
- Christopher Ostrowski
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
15
|
+
prerelease: false
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
16
17
|
requirements:
|
17
18
|
- - "~>"
|
18
19
|
- !ruby/object:Gem::Version
|
19
20
|
version: 0.86.0
|
20
21
|
type: :runtime
|
21
|
-
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
@@ -26,13 +26,27 @@ dependencies:
|
|
26
26
|
version: 0.86.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rubocop-rspec
|
29
|
+
prerelease: false
|
29
30
|
requirement: !ruby/object:Gem::Requirement
|
30
31
|
requirements:
|
31
32
|
- - ">="
|
32
33
|
- !ruby/object:Gem::Version
|
33
34
|
version: '0'
|
34
35
|
type: :runtime
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rubocop-rails
|
35
43
|
prerelease: false
|
44
|
+
requirement: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">="
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '0'
|
49
|
+
type: :runtime
|
36
50
|
version_requirements: !ruby/object:Gem::Requirement
|
37
51
|
requirements:
|
38
52
|
- - ">="
|