File tree Expand file tree Collapse file tree 4 files changed +23
-20
lines changed Expand file tree Collapse file tree 4 files changed +23
-20
lines changed Original file line number Diff line number Diff line change 1
1
AllCops :
2
- TargetRubyVersion : 2.3
2
+ TargetRubyVersion : 2.6
3
3
Include :
4
4
- ' Gemfile'
5
5
- ' Rakefile'
@@ -15,13 +15,10 @@ Documentation:
15
15
MethodLength :
16
16
Enabled : false
17
17
18
- SpaceInsideBrackets :
19
- Enabled : false
20
-
21
18
Style/Alias :
22
19
Enabled : false
23
20
24
- Layout/IndentArray :
21
+ Layout/FirstArrayElementIndentation :
25
22
Enabled : false
26
23
27
24
HashSyntax :
@@ -33,7 +30,7 @@ Metrics/LineLength:
33
30
Metrics/BlockLength :
34
31
Exclude :
35
32
- ' spec/**/*.rb'
36
-
33
+
37
34
Metrics/ModuleLength :
38
35
CountComments : false # count full line comments?
39
36
Max : 200
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ Style/GuardClause:
44
44
- ' lib/zendesk_apps_support/validations/source.rb'
45
45
46
46
# Offense count: 1
47
- Style/OpMethod :
47
+ Naming/BinaryOperatorParameterName :
48
48
Exclude :
49
49
- ' lib/zendesk_apps_support/app_file.rb'
50
50
Original file line number Diff line number Diff line change 41
41
mini_portile2 (~> 2.6.1 )
42
42
racc (~> 1.4 )
43
43
parallel (1.12.1 )
44
- parser (2.7 .2.0 )
44
+ parser (3.0 .2.0 )
45
45
ast (~> 2.4.1 )
46
- powerpack (0.1.3 )
47
46
racc (1.5.2 )
48
- rainbow (2.2.2 )
49
- rake
50
- rake (13.0.3 )
47
+ rainbow (3.0.0 )
48
+ rake (13.0.6 )
51
49
rb-fsevent (0.11.0 )
52
50
rb-inotify (0.9.10 )
53
51
ffi (>= 0.5.0 , < 2 )
52
+ regexp_parser (2.1.1 )
53
+ rexml (3.2.5 )
54
54
rspec (3.4.0 )
55
55
rspec-core (~> 3.4.0 )
56
56
rspec-expectations (~> 3.4.0 )
64
64
diff-lcs (>= 1.2.0 , < 2.0 )
65
65
rspec-support (~> 3.4.0 )
66
66
rspec-support (3.4.1 )
67
- rubocop (0.49.1 )
67
+ rubocop (1.20.0 )
68
68
parallel (~> 1.10 )
69
- parser (>= 2.3.3.1 , < 3.0 )
70
- powerpack (~> 0.1 )
71
- rainbow (>= 1.99.1 , < 3.0 )
69
+ parser (>= 3.0.0.0 )
70
+ rainbow (>= 2.2.2 , < 4.0 )
71
+ regexp_parser (>= 1.8 , < 3.0 )
72
+ rexml
73
+ rubocop-ast (>= 1.9.1 , < 2.0 )
72
74
ruby-progressbar (~> 1.7 )
73
- unicode-display_width (~> 1.0 , >= 1.0.1 )
75
+ unicode-display_width (>= 1.4.0 , < 3.0 )
76
+ rubocop-ast (1.11.0 )
77
+ parser (>= 3.0.1.1 )
74
78
ruby-progressbar (1.11.0 )
75
79
sass (3.7.4 )
76
80
sass-listen (~> 4.0.0 )
79
83
rb-inotify (~> 0.9 , >= 0.9.7 )
80
84
sassc (2.4.0 )
81
85
ffi (~> 1.9 )
82
- unicode-display_width (1.7 .0 )
86
+ unicode-display_width (2.0 .0 )
83
87
84
88
PLATFORMS
85
89
ruby
@@ -90,8 +94,9 @@ DEPENDENCIES
90
94
byebug (~> 9.0.6 )
91
95
faker (~> 1.6.6 )
92
96
parallel (= 1.12.1 )
97
+ rake
93
98
rspec (~> 3.4.0 )
94
- rubocop ( ~> 0.49.0 )
99
+ rubocop
95
100
zendesk_apps_support !
96
101
97
102
BUNDLED WITH
Original file line number Diff line number Diff line change @@ -27,10 +27,11 @@ Gem::Specification.new do |s|
27
27
s . add_development_dependency 'rspec' , '~> 3.4.0'
28
28
s . add_development_dependency 'bump' , '~> 0.5.1'
29
29
s . add_development_dependency 'faker' , '~> 1.6.6'
30
- s . add_development_dependency 'rubocop' , '~> 0.49.0'
30
+ s . add_development_dependency 'rubocop'
31
31
s . add_development_dependency 'byebug' , '~> 9.0.6'
32
32
s . add_development_dependency 'bundler' , '2.2.26'
33
33
s . add_development_dependency 'parallel' , '1.12.1'
34
+ s . add_development_dependency 'rake'
34
35
35
36
s . files = Dir . glob ( '{lib,config}/**/*' ) + %w[ README.md LICENSE ]
36
37
end
You can’t perform that action at this time.
0 commit comments