Skip to content

Commit 0c3d328

Browse files
author
Chris Drane
committed
Change declaration in gemfile for raddocs
The gemfile had gem 'raddocs', :github => "smartlogic/raddocs" which loads over http not https so is insecure.
1 parent 229fe27 commit 0c3d328

File tree

2 files changed

+13
-18
lines changed

2 files changed

+13
-18
lines changed

example/Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ gem 'rack-cors', :require => 'rack/cors'
66
gem 'rails', '4.2.5.1'
77
gem 'sqlite3'
88
gem 'spring', group: :development
9-
gem 'raddocs', :github => "smartlogic/raddocs"
9+
gem 'raddocs', '0.4.0'
1010

1111
group :test, :development do
1212
gem 'byebug'

example/Gemfile.lock

Lines changed: 12 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,3 @@
1-
GIT
2-
remote: git://github.com/smartlogic/raddocs.git
3-
revision: 9cf49c1ef3b3d7dc3bf8e19ef75021040df04652
4-
specs:
5-
raddocs (0.4.0)
6-
haml (~> 4.0, >= 4.0.4)
7-
json (~> 1.8, >= 1.8.1)
8-
sinatra (~> 1.3, >= 1.3.0)
9-
101
PATH
112
remote: ..
123
specs:
@@ -62,7 +53,7 @@ GEM
6253
erubis (2.7.0)
6354
globalid (0.3.6)
6455
activesupport (>= 4.1.0)
65-
haml (4.0.5)
56+
haml (4.0.7)
6657
tilt
6758
i18n (0.7.0)
6859
json (1.8.3)
@@ -78,10 +69,14 @@ GEM
7869
mini_portile2 (~> 2.0.0.rc2)
7970
rack (1.6.4)
8071
rack-cors (0.4.1)
81-
rack-protection (1.5.3)
72+
rack-protection (1.5.5)
8273
rack
8374
rack-test (0.6.3)
8475
rack (>= 1.0)
76+
raddocs (0.4.0)
77+
haml (~> 4.0, >= 4.0.4)
78+
json (~> 1.8, >= 1.8.1)
79+
sinatra (~> 1.3, >= 1.3.0)
8580
rails (4.2.5.1)
8681
actionmailer (= 4.2.5.1)
8782
actionpack (= 4.2.5.1)
@@ -127,10 +122,10 @@ GEM
127122
rspec-mocks (~> 3.0.0)
128123
rspec-support (~> 3.0.0)
129124
rspec-support (3.0.4)
130-
sinatra (1.4.5)
131-
rack (~> 1.4)
125+
sinatra (1.4.8)
126+
rack (~> 1.5)
132127
rack-protection (~> 1.4)
133-
tilt (~> 1.3, >= 1.3.4)
128+
tilt (>= 1.3, < 3)
134129
spring (1.1.3)
135130
sprockets (3.5.2)
136131
concurrent-ruby (~> 1.0)
@@ -142,7 +137,7 @@ GEM
142137
sqlite3 (1.3.9)
143138
thor (0.19.1)
144139
thread_safe (0.3.5)
145-
tilt (1.4.1)
140+
tilt (2.0.8)
146141
tzinfo (1.2.2)
147142
thread_safe (~> 0.1)
148143

@@ -153,7 +148,7 @@ DEPENDENCIES
153148
awesome_print
154149
byebug
155150
rack-cors
156-
raddocs!
151+
raddocs (= 0.4.0)
157152
rails (= 4.2.5.1)
158153
rspec-rails
159154
rspec_api_documentation!
@@ -164,4 +159,4 @@ RUBY VERSION
164159
ruby 2.3.3p222
165160

166161
BUNDLED WITH
167-
1.16.2
162+
1.16.3

0 commit comments

Comments
 (0)