maid 0.10.0.pre.alpha.3 → 0.11.0

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.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/.github/FUNDING.yml +14 -0
  3. data/.github/ISSUE_TEMPLATE/bug_report.md +37 -0
  4. data/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  5. data/.github/workflows/coverage.yml +3 -3
  6. data/.github/workflows/lint.yml +9 -1
  7. data/.github/workflows/merge-gatekeeper.yml +20 -0
  8. data/.github/workflows/release.yml +13 -20
  9. data/.github/workflows/stale.yml +25 -0
  10. data/.github/workflows/test.yml +8 -7
  11. data/.gitignore +1 -1
  12. data/.release-please-manifest.json +1 -1
  13. data/.rubocop.yml +3 -1
  14. data/.rubocop_todo.yml +105 -107
  15. data/.ruby-version +1 -1
  16. data/CHANGELOG.md +23 -0
  17. data/Dockerfile +13 -0
  18. data/Gemfile.lock +226 -0
  19. data/Guardfile +2 -0
  20. data/README.md +82 -49
  21. data/Rakefile +9 -0
  22. data/SECURITY.md +29 -0
  23. data/fixtures/files/test_rules.rb +3 -0
  24. data/fixtures/vcr_cassettes/Dependency_expectations/Geocoder/translates_latitude_and_longitude_into_street_addresses.yml +42 -0
  25. data/fixtures/vcr_cassettes/Maid_Tools/_location_city/given_a_JPEG_image/reports_the_known_location.yml +42 -0
  26. data/lib/maid/logger/logger.rb +63 -0
  27. data/lib/maid/maid.rb +6 -22
  28. data/lib/maid/repeat.rb +2 -2
  29. data/lib/maid/rule.rb +2 -2
  30. data/lib/maid/rule_container.rb +2 -2
  31. data/lib/maid/tools.rb +3 -3
  32. data/lib/maid/trash_migration.rb +2 -0
  33. data/lib/maid/version.rb +1 -1
  34. data/lib/maid/watch.rb +2 -2
  35. data/lib/maid.rb +3 -2
  36. data/maid.gemspec +14 -9
  37. data/release-please-config.json +18 -0
  38. data/script/docker-test +7 -0
  39. data/spec/dependency_spec.rb +1 -1
  40. data/spec/fakefs_helper.rb +13 -0
  41. data/spec/lib/maid/logger/logger_spec.rb +64 -0
  42. data/spec/lib/maid/maid_spec.rb +113 -103
  43. data/spec/lib/maid/rake/single_rule_spec.rb +1 -1
  44. data/spec/lib/maid/tools_spec.rb +384 -225
  45. data/spec/lib/maid/trash_migration_spec.rb +7 -5
  46. data/spec/spec_helper.rb +17 -1
  47. metadata +124 -44
  48. data/Vagrantfile +0 -14
  49. data/script/vagrant-provision +0 -43
  50. data/script/vagrant-test +0 -7
  51. data/script/vagrant-test-all +0 -34
data/.rubocop_todo.yml CHANGED
@@ -12,30 +12,30 @@
12
12
  # Include: **/*.gemspec, **/Gemfile, **/gems.rb
13
13
  Gemspec/DevelopmentDependencies:
14
14
  Exclude:
15
- - 'maid.gemspec'
15
+ - "maid.gemspec"
16
16
 
17
17
  # Offense count: 1
18
18
  # Configuration parameters: Severity, Include.
19
19
  # Include: **/*.gemspec
20
20
  Gemspec/DuplicatedAssignment:
21
21
  Exclude:
22
- - 'maid.gemspec'
22
+ - "maid.gemspec"
23
23
 
24
24
  # Offense count: 2
25
25
  # Configuration parameters: AllowComments, AllowEmptyLambdas.
26
26
  Lint/EmptyBlock:
27
27
  Exclude:
28
- - 'spec/lib/maid/maid_spec.rb'
28
+ - "spec/lib/maid/maid_spec.rb"
29
29
 
30
30
  # Offense count: 1
31
31
  Lint/MissingSuper:
32
32
  Exclude:
33
- - 'lib/maid/rake/task.rb'
33
+ - "lib/maid/rake/task.rb"
34
34
 
35
35
  # Offense count: 3
36
36
  Lint/UselessAssignment:
37
37
  Exclude:
38
- - 'lib/maid/tools.rb'
38
+ - "lib/maid/tools.rb"
39
39
 
40
40
  # Offense count: 7
41
41
  # Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
@@ -63,10 +63,10 @@ Metrics/CyclomaticComplexity:
63
63
  Metrics/MethodLength:
64
64
  Max: 27
65
65
 
66
- # Offense count: 4
66
+ # Offense count: 5
67
67
  # Configuration parameters: CountComments, CountAsOne.
68
68
  Metrics/ModuleLength:
69
- Max: 753
69
+ Max: 855
70
70
 
71
71
  # Offense count: 2
72
72
  # Configuration parameters: AllowedMethods, AllowedPatterns.
@@ -78,7 +78,7 @@ Metrics/PerceivedComplexity:
78
78
  # ForbiddenDelimiters: (?i-mx:(^|\s)(EO[A-Z]{1}|END)(\s|$))
79
79
  Naming/HeredocDelimiterNaming:
80
80
  Exclude:
81
- - 'lib/maid/app.rb'
81
+ - "lib/maid/app.rb"
82
82
 
83
83
  # Offense count: 5
84
84
  # Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
@@ -88,37 +88,37 @@ Naming/HeredocDelimiterNaming:
88
88
  # MethodDefinitionMacros: define_method, define_singleton_method
89
89
  Naming/PredicateName:
90
90
  Exclude:
91
- - 'spec/**/*'
92
- - 'lib/maid/platform.rb'
93
- - 'lib/maid/tools.rb'
91
+ - "spec/**/*"
92
+ - "lib/maid/platform.rb"
93
+ - "lib/maid/tools.rb"
94
94
 
95
95
  # Offense count: 1
96
96
  RSpec/BeforeAfterAll:
97
97
  Exclude:
98
- - 'spec/spec_helper.rb'
99
- - 'spec/rails_helper.rb'
100
- - 'spec/support/**/*.rb'
101
- - 'spec/lib/maid/rake/task_spec.rb'
98
+ - "spec/spec_helper.rb"
99
+ - "spec/rails_helper.rb"
100
+ - "spec/support/**/*.rb"
101
+ - "spec/lib/maid/rake/task_spec.rb"
102
102
 
103
103
  # Offense count: 17
104
104
  # Configuration parameters: Prefixes, AllowedPatterns.
105
105
  # Prefixes: when, with, without
106
106
  RSpec/ContextWording:
107
107
  Exclude:
108
- - 'spec/lib/maid/rake/task_spec.rb'
109
- - 'spec/lib/maid/tools_spec.rb'
110
- - 'spec/lib/maid/trash_migration_spec.rb'
108
+ - "spec/lib/maid/rake/task_spec.rb"
109
+ - "spec/lib/maid/tools_spec.rb"
110
+ - "spec/lib/maid/trash_migration_spec.rb"
111
111
 
112
112
  # Offense count: 1
113
113
  # Configuration parameters: IgnoredMetadata.
114
114
  RSpec/DescribeClass:
115
115
  Exclude:
116
- - '**/spec/features/**/*'
117
- - '**/spec/requests/**/*'
118
- - '**/spec/routing/**/*'
119
- - '**/spec/system/**/*'
120
- - '**/spec/views/**/*'
121
- - 'spec/dependency_spec.rb'
116
+ - "**/spec/features/**/*"
117
+ - "**/spec/requests/**/*"
118
+ - "**/spec/routing/**/*"
119
+ - "**/spec/system/**/*"
120
+ - "**/spec/views/**/*"
121
+ - "spec/dependency_spec.rb"
122
122
 
123
123
  # Offense count: 59
124
124
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -126,13 +126,13 @@ RSpec/DescribeClass:
126
126
  # SupportedStyles: described_class, explicit
127
127
  RSpec/DescribedClass:
128
128
  Exclude:
129
- - 'spec/dependency_spec.rb'
130
- - 'spec/lib/maid/app_spec.rb'
131
- - 'spec/lib/maid/maid_spec.rb'
132
- - 'spec/lib/maid/rule_spec.rb'
133
- - 'spec/lib/maid/tools_spec.rb'
134
- - 'spec/lib/maid/user_agent_spec.rb'
135
- - 'spec/lib/maid_spec.rb'
129
+ - "spec/dependency_spec.rb"
130
+ - "spec/lib/maid/app_spec.rb"
131
+ - "spec/lib/maid/maid_spec.rb"
132
+ - "spec/lib/maid/rule_spec.rb"
133
+ - "spec/lib/maid/tools_spec.rb"
134
+ - "spec/lib/maid/user_agent_spec.rb"
135
+ - "spec/lib/maid_spec.rb"
136
136
 
137
137
  # Offense count: 8
138
138
  # Configuration parameters: CountAsOne.
@@ -142,49 +142,49 @@ RSpec/ExampleLength:
142
142
  # Offense count: 1
143
143
  RSpec/ExpectInHook:
144
144
  Exclude:
145
- - 'spec/lib/maid/tools_spec.rb'
145
+ - "spec/lib/maid/tools_spec.rb"
146
146
 
147
147
  # Offense count: 5
148
148
  # Configuration parameters: AssignmentOnly.
149
149
  RSpec/InstanceVariable:
150
150
  Exclude:
151
- - 'spec/dependency_spec.rb'
152
- - 'spec/lib/maid_spec.rb'
151
+ - "spec/dependency_spec.rb"
152
+ - "spec/lib/maid_spec.rb"
153
153
 
154
154
  # Offense count: 57
155
155
  # Configuration parameters: EnforcedStyle.
156
156
  # SupportedStyles: have_received, receive
157
157
  RSpec/MessageSpies:
158
158
  Exclude:
159
- - 'spec/lib/maid/app_spec.rb'
160
- - 'spec/lib/maid/maid_spec.rb'
161
- - 'spec/lib/maid/rake/single_rule_spec.rb'
162
- - 'spec/lib/maid/rake/task_spec.rb'
163
- - 'spec/lib/maid/tools_spec.rb'
164
- - 'spec/lib/maid_spec.rb'
159
+ - "spec/lib/maid/app_spec.rb"
160
+ - "spec/lib/maid/maid_spec.rb"
161
+ - "spec/lib/maid/rake/single_rule_spec.rb"
162
+ - "spec/lib/maid/rake/task_spec.rb"
163
+ - "spec/lib/maid/tools_spec.rb"
164
+ - "spec/lib/maid_spec.rb"
165
165
 
166
166
  # Offense count: 2
167
167
  RSpec/MultipleDescribes:
168
168
  Exclude:
169
- - 'spec/lib/maid/numeric_extensions_spec.rb'
170
- - 'spec/lib/maid_spec.rb'
169
+ - "spec/lib/maid/numeric_extensions_spec.rb"
170
+ - "spec/lib/maid_spec.rb"
171
171
 
172
172
  # Offense count: 42
173
173
  RSpec/MultipleExpectations:
174
174
  Max: 4
175
175
 
176
- # Offense count: 1
176
+ # Offense count: 22
177
177
  # Configuration parameters: AllowSubject.
178
178
  RSpec/MultipleMemoizedHelpers:
179
- Max: 7
179
+ Max: 14
180
180
 
181
181
  # Offense count: 16
182
182
  # Configuration parameters: EnforcedStyle, IgnoreSharedExamples.
183
183
  # SupportedStyles: always, named_only
184
184
  RSpec/NamedSubject:
185
185
  Exclude:
186
- - 'spec/lib/maid/platform_spec.rb'
187
- - 'spec/lib/maid/trash_migration_spec.rb'
186
+ - "spec/lib/maid/platform_spec.rb"
187
+ - "spec/lib/maid/trash_migration_spec.rb"
188
188
 
189
189
  # Offense count: 3
190
190
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -192,39 +192,37 @@ RSpec/NamedSubject:
192
192
  # SupportedStyles: inflected, explicit
193
193
  RSpec/PredicateMatcher:
194
194
  Exclude:
195
- - 'spec/lib/maid/tools_spec.rb'
195
+ - "spec/lib/maid/tools_spec.rb"
196
196
 
197
197
  # Offense count: 13
198
198
  RSpec/StubbedMock:
199
199
  Exclude:
200
- - 'spec/lib/maid/app_spec.rb'
201
- - 'spec/lib/maid/maid_spec.rb'
202
- - 'spec/lib/maid/rake/single_rule_spec.rb'
203
- - 'spec/lib/maid/tools_spec.rb'
200
+ - "spec/lib/maid/app_spec.rb"
201
+ - "spec/lib/maid/maid_spec.rb"
202
+ - "spec/lib/maid/rake/single_rule_spec.rb"
203
+ - "spec/lib/maid/tools_spec.rb"
204
204
 
205
205
  # Offense count: 1
206
206
  # This cop supports unsafe autocorrection (--autocorrect-all).
207
- # Configuration parameters: .
208
- # SupportedStyles: constant, string
209
207
  RSpec/VerifiedDoubleReference:
210
- EnforcedStyle: string
208
+ Enabled: true
211
209
 
212
210
  # Offense count: 20
213
211
  # Configuration parameters: IgnoreNameless, IgnoreSymbolicNames.
214
212
  RSpec/VerifiedDoubles:
215
213
  Exclude:
216
- - 'spec/lib/maid/app_spec.rb'
217
- - 'spec/lib/maid/maid_spec.rb'
218
- - 'spec/lib/maid/rake/single_rule_spec.rb'
219
- - 'spec/lib/maid/tools_spec.rb'
220
- - 'spec/lib/maid/trash_migration_spec.rb'
221
- - 'spec/lib/maid_spec.rb'
214
+ - "spec/lib/maid/app_spec.rb"
215
+ - "spec/lib/maid/maid_spec.rb"
216
+ - "spec/lib/maid/rake/single_rule_spec.rb"
217
+ - "spec/lib/maid/tools_spec.rb"
218
+ - "spec/lib/maid/trash_migration_spec.rb"
219
+ - "spec/lib/maid_spec.rb"
222
220
 
223
221
  # Offense count: 1
224
222
  # This cop supports safe autocorrection (--autocorrect).
225
223
  Rake/Desc:
226
224
  Exclude:
227
- - 'Rakefile'
225
+ - "Rakefile"
228
226
 
229
227
  # Offense count: 11
230
228
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -232,47 +230,47 @@ Rake/Desc:
232
230
  # SupportedStyles: nested, compact
233
231
  Style/ClassAndModuleChildren:
234
232
  Exclude:
235
- - 'lib/maid/app.rb'
236
- - 'lib/maid/downloading.rb'
237
- - 'lib/maid/maid.rb'
238
- - 'lib/maid/numeric_extensions.rb'
239
- - 'lib/maid/platform.rb'
240
- - 'lib/maid/repeat.rb'
241
- - 'lib/maid/rule.rb'
242
- - 'lib/maid/rule_container.rb'
243
- - 'lib/maid/tools.rb'
244
- - 'lib/maid/user_agent.rb'
245
- - 'lib/maid/watch.rb'
233
+ - "lib/maid/app.rb"
234
+ - "lib/maid/downloading.rb"
235
+ - "lib/maid/maid.rb"
236
+ - "lib/maid/numeric_extensions.rb"
237
+ - "lib/maid/platform.rb"
238
+ - "lib/maid/repeat.rb"
239
+ - "lib/maid/rule.rb"
240
+ - "lib/maid/rule_container.rb"
241
+ - "lib/maid/tools.rb"
242
+ - "lib/maid/user_agent.rb"
243
+ - "lib/maid/watch.rb"
246
244
 
247
245
  # Offense count: 1
248
246
  Style/ClassVars:
249
247
  Exclude:
250
- - 'lib/maid/maid.rb'
248
+ - "lib/maid/maid.rb"
251
249
 
252
250
  # Offense count: 1
253
251
  # This cop supports unsafe autocorrection (--autocorrect-all).
254
252
  Style/CollectionCompact:
255
253
  Exclude:
256
- - 'lib/maid/maid.rb'
254
+ - "lib/maid/maid.rb"
257
255
 
258
256
  # Offense count: 12
259
257
  # Configuration parameters: AllowedConstants.
260
258
  Style/Documentation:
261
259
  Exclude:
262
- - 'spec/**/*'
263
- - 'test/**/*'
264
- - 'lib/maid.rb'
265
- - 'lib/maid/app.rb'
266
- - 'lib/maid/downloading.rb'
267
- - 'lib/maid/numeric_extensions.rb'
268
- - 'lib/maid/platform.rb'
269
- - 'lib/maid/rake/single_rule.rb'
270
- - 'lib/maid/rake/task.rb'
271
- - 'lib/maid/repeat.rb'
272
- - 'lib/maid/rule.rb'
273
- - 'lib/maid/rule_container.rb'
274
- - 'lib/maid/trash_migration.rb'
275
- - 'lib/maid/watch.rb'
260
+ - "spec/**/*"
261
+ - "test/**/*"
262
+ - "lib/maid.rb"
263
+ - "lib/maid/app.rb"
264
+ - "lib/maid/downloading.rb"
265
+ - "lib/maid/numeric_extensions.rb"
266
+ - "lib/maid/platform.rb"
267
+ - "lib/maid/rake/single_rule.rb"
268
+ - "lib/maid/rake/task.rb"
269
+ - "lib/maid/repeat.rb"
270
+ - "lib/maid/rule.rb"
271
+ - "lib/maid/rule_container.rb"
272
+ - "lib/maid/trash_migration.rb"
273
+ - "lib/maid/watch.rb"
276
274
 
277
275
  # Offense count: 34
278
276
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -285,20 +283,20 @@ Style/FrozenStringLiteralComment:
285
283
  # This cop supports unsafe autocorrection (--autocorrect-all).
286
284
  Style/GlobalStdStream:
287
285
  Exclude:
288
- - 'lib/maid/app.rb'
289
- - 'spec/lib/maid/app_spec.rb'
286
+ - "lib/maid/app.rb"
287
+ - "spec/lib/maid/app_spec.rb"
290
288
 
291
289
  # Offense count: 4
292
290
  # This cop supports unsafe autocorrection (--autocorrect-all).
293
291
  # Configuration parameters: InverseMethods, InverseBlocks.
294
292
  Style/InverseMethods:
295
293
  Exclude:
296
- - 'lib/maid/tools.rb'
294
+ - "lib/maid/tools.rb"
297
295
 
298
296
  # Offense count: 2
299
297
  Style/MultilineBlockChain:
300
298
  Exclude:
301
- - 'lib/maid/tools.rb'
299
+ - "lib/maid/tools.rb"
302
300
 
303
301
  # Offense count: 1
304
302
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -306,7 +304,7 @@ Style/MultilineBlockChain:
306
304
  # SupportedStyles: literals, strict
307
305
  Style/MutableConstant:
308
306
  Exclude:
309
- - 'lib/maid/rake/task.rb'
307
+ - "lib/maid/rake/task.rb"
310
308
 
311
309
  # Offense count: 6
312
310
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -314,8 +312,8 @@ Style/MutableConstant:
314
312
  # SupportedStyles: predicate, comparison
315
313
  Style/NumericPredicate:
316
314
  Exclude:
317
- - 'spec/**/*'
318
- - 'lib/maid/tools.rb'
315
+ - "spec/**/*"
316
+ - "lib/maid/tools.rb"
319
317
 
320
318
  # Offense count: 3
321
319
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -323,15 +321,15 @@ Style/NumericPredicate:
323
321
  # AllowedMethods: present?, blank?, presence, try, try!
324
322
  Style/SafeNavigation:
325
323
  Exclude:
326
- - 'lib/maid/rake/task.rb'
327
- - 'lib/maid/rule_container.rb'
328
- - 'spec/lib/maid/app_spec.rb'
324
+ - "lib/maid/rake/task.rb"
325
+ - "lib/maid/rule_container.rb"
326
+ - "spec/lib/maid/app_spec.rb"
329
327
 
330
328
  # Offense count: 2
331
329
  # This cop supports unsafe autocorrection (--autocorrect-all).
332
330
  Style/SlicingWithRange:
333
331
  Exclude:
334
- - 'lib/maid/tools.rb'
332
+ - "lib/maid/tools.rb"
335
333
 
336
334
  # Offense count: 1
337
335
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -345,16 +343,16 @@ Style/SpecialGlobalVars:
345
343
  # Configuration parameters: Mode.
346
344
  Style/StringConcatenation:
347
345
  Exclude:
348
- - 'lib/maid/tools.rb'
349
- - 'lib/maid/trash_migration.rb'
350
- - 'spec/dependency_spec.rb'
351
- - 'spec/lib/maid/tools_spec.rb'
346
+ - "lib/maid/tools.rb"
347
+ - "lib/maid/trash_migration.rb"
348
+ - "spec/dependency_spec.rb"
349
+ - "spec/lib/maid/tools_spec.rb"
352
350
 
353
351
  # Offense count: 1
354
352
  # This cop supports unsafe autocorrection (--autocorrect-all).
355
353
  Style/StructInheritance:
356
354
  Exclude:
357
- - 'lib/maid/rule.rb'
355
+ - "lib/maid/rule.rb"
358
356
 
359
357
  # Offense count: 4
360
358
  # This cop supports unsafe autocorrection (--autocorrect-all).
@@ -362,11 +360,11 @@ Style/StructInheritance:
362
360
  # AllowedMethods: define_method
363
361
  Style/SymbolProc:
364
362
  Exclude:
365
- - 'lib/maid/tools.rb'
366
- - 'spec/dependency_spec.rb'
363
+ - "lib/maid/tools.rb"
364
+ - "spec/dependency_spec.rb"
367
365
 
368
366
  # Offense count: 4
369
367
  # This cop supports unsafe autocorrection (--autocorrect-all).
370
368
  Style/ZeroLengthPredicate:
371
369
  Exclude:
372
- - 'lib/maid/tools.rb'
370
+ - "lib/maid/tools.rb"
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.2.1
1
+ 3.4.2
data/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.11.0](https://github.com/maid/maid/compare/maid-v0.10.0...maid/v0.11.0) (2025-03-30)
4
+
5
+
6
+ ### ⚠ BREAKING CHANGES
7
+
8
+ * Drop support for ruby < 3.2 (EOL rubies)
9
+
10
+ ### Features
11
+
12
+ * Update to Ruby 3.4 ([770d9d9](https://github.com/maid/maid/commit/770d9d9ca9618ba4669077efd860335efe09d16d))
13
+
14
+
15
+ ### Code Refactoring
16
+
17
+ * Drop support for ruby &lt; 3.2 (EOL rubies) ([770d9d9](https://github.com/maid/maid/commit/770d9d9ca9618ba4669077efd860335efe09d16d))
18
+
19
+ ## [0.10.0](https://github.com/maid/maid/compare/v0.10.0-alpha.3...v0.10.0) (2023-05-01)
20
+
21
+
22
+ ### Miscellaneous Chores
23
+
24
+ * release 0.10.0 ([1f35afd](https://github.com/maid/maid/commit/1f35afd2030bd74a5175ced5cd9766273162dea4))
25
+
3
26
  ## [0.10.0-alpha.3](https://github.com/maid/maid/compare/v0.10.0-alpha.2...v0.10.0-alpha.3) (2023-04-04)
4
27
 
5
28
 
data/Dockerfile ADDED
@@ -0,0 +1,13 @@
1
+ FROM ruby:3.4
2
+
3
+ WORKDIR /usr/src/app
4
+
5
+ COPY Gemfile Gemfile.lock maid.gemspec ./
6
+ COPY lib/maid/version.rb ./lib/maid/
7
+ # Remove "dubious ownership" error messages
8
+ RUN git config --global --add safe.directory /usr/src/app
9
+ RUN bundle install
10
+
11
+ ENV ISOLATED=true
12
+ CMD ["bash", "-c", "/usr/local/bin/bundle exec guard"]
13
+