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 11
11
byebug (11.1.3 )
12
12
docile (1.3.2 )
13
13
json (2.3.1 )
14
- power_assert (1.1.3 )
14
+ power_assert (1.2.0 )
15
15
rake (13.0.1 )
16
- simplecov (0.19.0 )
16
+ simplecov (0.18.5 )
17
17
docile (~> 1.1 )
18
18
simplecov-html (~> 0.11 )
19
19
simplecov-html (0.12.2 )
20
- test-unit (3.2.9 )
20
+ test-unit (3.3.6 )
21
21
power_assert
22
22
23
23
PLATFORMS
@@ -30,4 +30,4 @@ DEPENDENCIES
30
30
test-unit
31
31
32
32
BUNDLED 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