File tree 3 files changed +5
-3
lines changed
3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1
- FROM codeclimate/codeclimate-parser:b871
1
+ FROM codeclimate/codeclimate-parser:b879
2
2
LABEL maintainer="Code Climate <hello@codeclimate.com>"
3
3
4
4
# Reset from base image
@@ -24,5 +24,7 @@ RUN chown -R app:app ./
24
24
25
25
USER app
26
26
27
+ # Hide deprecation warnings
28
+ ENV RUBYOPT="-W0"
27
29
ENTRYPOINT ["/usr/src/app/entrypoint" ]
28
30
CMD ["/usr/src/app/bin/duplication" , "/code" , "/config.json" ]
Original file line number Diff line number Diff line change @@ -57,4 +57,4 @@ DEPENDENCIES
57
57
sexp_processor (~> 4.11 )
58
58
59
59
BUNDLED WITH
60
- 1.10.6
60
+ 2.3.12
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def run(file)
42
42
end
43
43
rescue => ex
44
44
if RESCUABLE_ERRORS . map { |klass | ex . instance_of? ( klass ) } . include? ( true )
45
- CC . logger . info ( "Skipping file #{ file } due to exception (#{ ex . class } ): #{ ex . message } \n #{ ex . backtrace . join ( " \n " ) } " )
45
+ CC . logger . info ( "Skipping file #{ file } due to exception (#{ ex . class } ): #{ ex . message } \n " )
46
46
nil
47
47
else
48
48
CC . logger . info ( "#{ ex . class } error occurred processing file #{ file } : aborting." )
You can’t perform that action at this time.
0 commit comments