Skip to content

Commit b616f58

Browse files
Merge pull request #27 from learn-co-curriculum/adjusting-gemfile
updating gems for vulnerability fix
2 parents 0e51aac + 1338295 commit b616f58

File tree

2 files changed

+15
-13
lines changed

2 files changed

+15
-13
lines changed

Gemfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ source "https://rubygems.org"
44
# gem "rails"
55

66
gem 'sinatra'
7+
gem 'rack-protection', '~> 2.0', '>= 2.0.1'
78
gem 'rake'
89
gem 'thin'
910
gem 'shotgun'
@@ -15,4 +16,4 @@ group :test do
1516
gem 'capybara'
1617
gem 'rack-test'
1718
gem 'poltergeist'
18-
end
19+
end

Gemfile.lock

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ GEM
33
specs:
44
addressable (2.5.2)
55
public_suffix (>= 2.0.2, < 4.0)
6-
capybara (2.17.0)
6+
capybara (2.18.0)
77
addressable
88
mini_mime (>= 0.1.3)
99
nokogiri (>= 1.3.3)
@@ -18,8 +18,8 @@ GEM
1818
method_source (0.9.0)
1919
mini_mime (1.0.0)
2020
mini_portile2 (2.3.0)
21-
mustermann (1.0.1)
22-
nokogiri (1.8.1)
21+
mustermann (1.0.2)
22+
nokogiri (1.8.2)
2323
mini_portile2 (~> 2.3.0)
2424
poltergeist (1.17.0)
2525
capybara (~> 2.1)
@@ -28,14 +28,14 @@ GEM
2828
pry (0.11.3)
2929
coderay (~> 1.1.0)
3030
method_source (~> 0.9.0)
31-
public_suffix (3.0.1)
32-
rack (2.0.3)
33-
rack-protection (2.0.0)
31+
public_suffix (3.0.2)
32+
rack (2.0.4)
33+
rack-protection (2.0.1)
3434
rack
35-
rack-test (0.8.2)
35+
rack-test (0.8.3)
3636
rack (>= 1.0, < 3)
3737
rake (12.3.0)
38-
require_all (1.5.0)
38+
require_all (2.0.0)
3939
rspec (3.7.0)
4040
rspec-core (~> 3.7.0)
4141
rspec-expectations (~> 3.7.0)
@@ -48,13 +48,13 @@ GEM
4848
rspec-mocks (3.7.0)
4949
diff-lcs (>= 1.2.0, < 2.0)
5050
rspec-support (~> 3.7.0)
51-
rspec-support (3.7.0)
51+
rspec-support (3.7.1)
5252
shotgun (0.9.2)
5353
rack (>= 1.0)
54-
sinatra (2.0.0)
54+
sinatra (2.0.1)
5555
mustermann (~> 1.0)
5656
rack (~> 2.0)
57-
rack-protection (= 2.0.0)
57+
rack-protection (= 2.0.1)
5858
tilt (~> 2.0)
5959
thin (1.7.2)
6060
daemons (~> 1.0, >= 1.0.9)
@@ -74,6 +74,7 @@ DEPENDENCIES
7474
capybara
7575
poltergeist
7676
pry
77+
rack-protection (~> 2.0, >= 2.0.1)
7778
rack-test
7879
rake
7980
require_all
@@ -83,4 +84,4 @@ DEPENDENCIES
8384
thin
8485

8586
BUNDLED WITH
86-
1.16.0
87+
1.16.1

0 commit comments

Comments
 (0)