Skip to content

Commit 458a056

Browse files
committed
add mechanize gem - to silence the message (from statsample) each time GV is run
1 parent e8bebda commit 458a056

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

Gemfile.lock

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
PATH
22
remote: .
33
specs:
4-
genevalidator (2.0.0)
4+
genevalidator (2.0.1)
55
bio (~> 1.4)
66
bio-blastxmlparser (~> 2.0)
77
genevalidatorapp (~> 2.0)
8+
mechanize (= 2.7.5)
9+
rack (~> 2.0)
810
statsample (= 2.1.0)
911

1012
GEM
@@ -26,21 +28,40 @@ GEM
2628
dirty-memoize (0.0.4)
2729
distribution (0.7.3)
2830
docile (1.1.5)
31+
domain_name (0.5.20180417)
32+
unf (>= 0.0.5, < 1.0.0)
2933
extendmatrix (0.4)
3034
genevalidatorapp (2.0.2)
3135
bio (~> 1.4)
3236
sinatra (~> 2.0)
3337
sinatra-cross_origin (~> 0.3)
3438
slim (~> 3.0)
39+
http-cookie (1.0.3)
40+
domain_name (~> 0.5)
3541
json (2.1.0)
3642
log4r (1.1.10)
43+
mechanize (2.7.5)
44+
domain_name (~> 0.5, >= 0.5.1)
45+
http-cookie (~> 1.0)
46+
mime-types (>= 1.17.2)
47+
net-http-digest_auth (~> 1.1, >= 1.1.1)
48+
net-http-persistent (~> 2.5, >= 2.5.2)
49+
nokogiri (~> 1.6)
50+
ntlm-http (~> 0.1, >= 0.1.1)
51+
webrobots (>= 0.0.9, < 0.2)
52+
mime-types (3.1)
53+
mime-types-data (~> 3.2015)
54+
mime-types-data (3.2016.0521)
3755
mini_portile2 (2.3.0)
3856
minimization (0.2.3)
3957
text-table (~> 1.2)
4058
minitest (5.11.3)
4159
mustermann (1.0.2)
60+
net-http-digest_auth (1.4.1)
61+
net-http-persistent (2.9.4)
4262
nokogiri (1.8.3)
4363
mini_portile2 (~> 2.3.0)
64+
ntlm-http (0.1.1)
4465
prawn (0.8.4)
4566
prawn-core (>= 0.8.4, < 0.9)
4667
prawn-layout (>= 0.8.4, < 0.9)
@@ -92,6 +113,10 @@ GEM
92113
temple (0.8.0)
93114
text-table (1.2.4)
94115
tilt (2.0.8)
116+
unf (0.1.4)
117+
unf_ext
118+
unf_ext (0.0.7.5)
119+
webrobots (0.1.2)
95120
yard (0.9.14)
96121

97122
PLATFORMS

genevalidator.gemspec

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ Gem::Specification.new do |s|
2727
s.add_dependency 'rack', '~> 2.0'
2828
s.add_dependency 'statsample', '2.1.0'
2929

30+
# Adding mechanize gem just to silence a message on load.
31+
# This is due the Statsample gem
32+
# See https://github.com/SciRuby/daru/issues/404
33+
# See https://github.com/SciRuby/statsample/pull/69
34+
s.add_dependency 'mechanize', '2.7.5'
35+
3036
s.files = `git ls-files -z`.split("\x0")
3137
s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
3238
s.test_files = s.files.grep(%r{^(test|spec|features)/})

0 commit comments

Comments
 (0)