File tree Expand file tree Collapse file tree 4 files changed +30
-4
lines changed Expand file tree Collapse file tree 4 files changed +30
-4
lines changed Original file line number Diff line number Diff line change 1+ FROM ruby:2.4
2+
3+ WORKDIR /gem
4+
5+ COPY . .
6+
7+ RUN apt-get update -y && \
8+ gem install bundler:2.1.0 && \
9+ bundle install
Original file line number Diff line number Diff line change 1111 byebug (11.1.3 )
1212 docile (1.3.2 )
1313 json (2.3.1 )
14- power_assert (1.1.3 )
14+ power_assert (1.2.0 )
1515 rake (13.0.1 )
16- simplecov (0.19.0 )
16+ simplecov (0.18.5 )
1717 docile (~> 1.1 )
1818 simplecov-html (~> 0.11 )
1919 simplecov-html (0.12.2 )
20- test-unit (3.2.9 )
20+ test-unit (3.3.6 )
2121 power_assert
2222
2323PLATFORMS
@@ -30,4 +30,4 @@ DEPENDENCIES
3030 test-unit
3131
3232BUNDLED WITH
33- 2.0.1
33+ 2.1.0
Original file line number Diff line number Diff line change 1+ .PHONY : image test sh
2+
3+ image :
4+ docker image build -t codeclimate/simplecov-json-formatter .
5+
6+ test :
7+ ./bin/run-image rake
8+
9+ sh :
10+ ./bin/run-image sh
11+
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ exec docker run \
4+ -it --rm \
5+ --volume " $PWD :/gem" \
6+ codeclimate/simplecov-json-formatter " $@ "
You can’t perform that action at this time.
0 commit comments