File tree Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Expand file tree Collapse file tree 3 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ source 'https://rubygems.org'
3
3
# spec.add_runtime_dependency '<name>', [<version requirements>]
4
4
gemspec name : 'metasploit-framework'
5
5
6
+ # These pull in pre-release gems in order to fix specific issues.
7
+ # XXX https://github.com/alexdalitz/dnsruby/pull/134
8
+ gem 'dnsruby' , git : 'https://github.com/alexdalitz/dnsruby'
9
+ # XXX https://github.com/ConnorAtherton/rb-readline/commit/fd882edcd145c26681f9971be5f6675c7f6d1970
10
+ gem 'rb-readline' , git : 'https://github.com/ConnorAtherton/rb-readline'
11
+
6
12
# separate from test as simplecov is not run on travis-ci
7
13
group :coverage do
8
14
# code coverage for tests
Original file line number Diff line number Diff line change
1
+ GIT
2
+ remote: https://github.com/ConnorAtherton/rb-readline
3
+ revision: fd882edcd145c26681f9971be5f6675c7f6d1970
4
+ specs:
5
+ rb-readline (0.5.4 )
6
+
7
+ GIT
8
+ remote: https://github.com/alexdalitz/dnsruby
9
+ revision: 09c3890ccfaedb7fd4951f56575d5c53651e0140
10
+ specs:
11
+ dnsruby (1.60.1 )
12
+
1
13
PATH
2
14
remote: .
3
15
specs:
109
121
builder (3.2.3 )
110
122
coderay (1.1.1 )
111
123
diff-lcs (1.3 )
112
- dnsruby (1.60.1 )
113
124
docile (1.1.5 )
114
125
erubis (2.7.0 )
115
126
factory_girl (4.8.0 )
234
245
rake (>= 0.8.7 )
235
246
thor (>= 0.18.1 , < 2.0 )
236
247
rake (12.0.0 )
237
- rb-readline (0.5.4 )
238
248
recog (2.1.11 )
239
249
nokogiri
240
250
redcarpet (3.4.0 )
@@ -350,13 +360,15 @@ PLATFORMS
350
360
ruby
351
361
352
362
DEPENDENCIES
363
+ dnsruby !
353
364
factory_girl_rails
354
365
fivemat
355
366
metasploit-aggregator
356
367
metasploit-framework !
357
368
octokit
358
369
pry
359
370
rake
371
+ rb-readline !
360
372
redcarpet
361
373
rspec-rails
362
374
rspec-rerun
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ RUN apk update && \
24
24
bison \
25
25
build-base \
26
26
ruby-dev \
27
- libffi-dev\
28
27
openssl-dev \
29
28
readline-dev \
30
29
sqlite-dev \
@@ -35,6 +34,7 @@ RUN apk update && \
35
34
yaml-dev \
36
35
zlib-dev \
37
36
ncurses-dev \
37
+ git \
38
38
&& echo "gem: --no-ri --no-rdoc" > /etc/gemrc \
39
39
&& bundle install --system $BUNDLER_ARGS \
40
40
&& apk del .ruby-builddeps \
You can’t perform that action at this time.
0 commit comments