Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

[Snyk] Fix for 1 vulnerabilities #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ group :test do
gem 'guard-rspec'
gem 'terminal-notifier-guard'
gem 'rb-fsevent', '~> 0.9.1'
gem 'rack-test'
gem 'rack-test', '>= 0.6.2'
gem 'webmock'
gem 'vcr'
gem 'pry-byebug'
end

group :production do
gem 'foreman'
gem 'unicorn'
gem 'unicorn', '>= 4.8.3'
end

gem 'sinatra'
gem 'sinatra', '>= 1.4.5'
gem 'tilt', '~> 1.4.1'
gem 'tilt-jbuilder', require: 'sinatra/jbuilder'
gem 'endpoint_base', :github => 'spree/endpoint_base'
Expand Down
27 changes: 13 additions & 14 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@ GEM
jmespath (1.4.0)
json (1.8.6)
json (1.8.6-java)
kgio (2.9.2)
kgio (2.11.2)
listen (2.7.9)
celluloid (>= 0.15.2)
rb-fsevent (>= 0.9.3)
Expand All @@ -845,12 +845,12 @@ GEM
pry-byebug (1.3.3)
byebug (~> 2.7)
pry (~> 0.10)
rack (1.5.2)
rack-protection (1.5.3)
rack (1.6.12)
rack-protection (1.5.5)
rack
rack-test (0.6.2)
rack (>= 1.0)
raindrops (0.13.0)
rack-test (1.1.0)
rack (>= 1.0, < 3)
raindrops (0.19.0)
rake (10.3.2)
rb-fsevent (0.9.4)
rb-inotify (0.9.5)
Expand All @@ -868,10 +868,10 @@ GEM
rspec-support (~> 3.0.0)
rspec-support (3.0.4)
safe_yaml (1.0.3)
sinatra (1.4.5)
rack (~> 1.4)
sinatra (1.4.8)
rack (~> 1.5)
rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4)
tilt (>= 1.3, < 3)
slop (3.6.0)
spoon (0.0.4)
ffi
Expand All @@ -887,9 +887,8 @@ GEM
timers (1.1.0)
tzinfo (1.2.2)
thread_safe (~> 0.1)
unicorn (4.8.3)
unicorn (5.5.2)
kgio (~> 2.6)
rack
raindrops (~> 0.7)
vcr (2.9.2)
webmock (1.18.0)
Expand All @@ -910,16 +909,16 @@ DEPENDENCIES
nokogiri (>= 1.10.4)
pry
pry-byebug
rack-test
rack-test (>= 0.6.2)
rake
rb-fsevent (~> 0.9.1)
rspec
sinatra
sinatra (>= 1.4.5)
terminal-notifier-guard
tilt (~> 1.4.1)
tilt-jbuilder
timecop
unicorn
unicorn (>= 4.8.3)
vcr
webmock

Expand Down