File tree 3 files changed +40
-9
lines changed
3 files changed +40
-9
lines changed Original file line number Diff line number Diff line change @@ -57,15 +57,15 @@ jobs:
57
57
- run :
58
58
name : Run Tests
59
59
command : bundle exec rake test
60
- # - store_test_results:
61
- # name: Store test results
62
- # path: tmp/test-results
63
- # - run:
64
- # name: Run Rubocop
65
- # command: bundle exec rake ci:rubocop
66
- # - store_artifacts:
67
- # name: Saves documentation
68
- # path: doc
60
+ - store_test_results :
61
+ name : Store test results
62
+ path : tmp/test-results
63
+ - run :
64
+ name : Run StandardRB
65
+ command : bundle exec rake standardrb --no-fix
66
+ - store_artifacts :
67
+ name : Saves documentation
68
+ path : doc
69
69
- persist_to_workspace :
70
70
root : .
71
71
paths :
Original file line number Diff line number Diff line change 65
65
minitest (~> 5.1 )
66
66
tzinfo (~> 1.1 )
67
67
zeitwerk (~> 2.2 , >= 2.2.2 )
68
+ ast (2.4.2 )
68
69
builder (3.2.4 )
69
70
coderay (1.1.3 )
70
71
concurrent-ruby (1.1.8 )
92
93
racc (~> 1.4 )
93
94
nokogiri (1.11.1-x86_64-linux )
94
95
racc (~> 1.4 )
96
+ parallel (1.20.1 )
97
+ parser (3.0.0.0 )
98
+ ast (~> 2.4.1 )
95
99
pry (0.13.1 )
96
100
coderay (~> 1.1 )
97
101
method_source (~> 1.0 )
125
129
method_source
126
130
rake (>= 0.8.7 )
127
131
thor (>= 0.20.3 , < 2.0 )
132
+ rainbow (3.0.0 )
128
133
rake (13.0.3 )
134
+ regexp_parser (2.0.3 )
135
+ rexml (3.2.4 )
136
+ rubocop (1.8.1 )
137
+ parallel (~> 1.10 )
138
+ parser (>= 3.0.0.0 )
139
+ rainbow (>= 2.2.2 , < 4.0 )
140
+ regexp_parser (>= 1.8 , < 3.0 )
141
+ rexml
142
+ rubocop-ast (>= 1.2.0 , < 2.0 )
143
+ ruby-progressbar (~> 1.7 )
144
+ unicode-display_width (>= 1.4.0 , < 3.0 )
145
+ rubocop-ast (1.4.1 )
146
+ parser (>= 2.7.1.5 )
147
+ rubocop-performance (1.9.2 )
148
+ rubocop (>= 0.90.0 , < 2.0 )
149
+ rubocop-ast (>= 0.4.0 )
150
+ ruby-progressbar (1.11.0 )
129
151
sprockets (4.0.2 )
130
152
concurrent-ruby (~> 1.0 )
131
153
rack (> 1 , < 3 )
@@ -134,10 +156,16 @@ GEM
134
156
activesupport (>= 4.0 )
135
157
sprockets (>= 3.0.0 )
136
158
sqlite3 (1.4.2 )
159
+ standard (0.12.0 )
160
+ rubocop (= 1.8.1 )
161
+ rubocop-performance (= 1.9.2 )
162
+ standardrb (1.0.0 )
163
+ standard
137
164
thor (1.1.0 )
138
165
thread_safe (0.3.6 )
139
166
tzinfo (1.2.9 )
140
167
thread_safe (~> 0.1 )
168
+ unicode-display_width (2.0.0 )
141
169
websocket-driver (0.7.3 )
142
170
websocket-extensions (>= 0.1.0 )
143
171
websocket-extensions (0.1.5 )
@@ -152,6 +180,7 @@ DEPENDENCIES
152
180
rails
153
181
rake-ui !
154
182
sqlite3
183
+ standardrb
155
184
156
185
BUNDLED WITH
157
186
2.2.8
Original file line number Diff line number Diff line change @@ -20,4 +20,6 @@ Gem::Specification.new do |spec|
20
20
spec . add_dependency "actionpack"
21
21
spec . add_dependency "railties"
22
22
spec . add_dependency "rake"
23
+
24
+ spec . add_development_dependency "standardrb"
23
25
end
You can’t perform that action at this time.
0 commit comments