Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump sinatra and sinatra-contrib #28

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
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ gem 'puma', '~> 4.3', '>= 4.3.5' # puma server to run our code base
gem 'rack', '~> 2.2' # provides a minimal, modular and adaptable interface
gem 'require_all', '~> 3.0' # wonderfully simple way to load your code
gem 'rubocop', '~> 0.85.0' # linters, tidy your code-up
gem 'sinatra', '~> 2.0', '>= 2.0.8.1' # basic frame-work to run application
gem 'sinatra-contrib', '~> 2.0', '>= 2.0.8.1' # helps us to package json as an response
gem 'sinatra', '~> 2.2' # basic frame-work to run application
gem 'sinatra-contrib', '~> 2.2' # helps us to package json as an response
group :test do
gem 'pry', '~> 0.13.1' # runtime developer console and IRB alternative
gem 'rack-test' # small, simple testing API for Rack apps
Expand Down
24 changes: 11 additions & 13 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ GEM
aws-sigv4 (~> 1.1)
aws-sigv4 (1.1.4)
aws-eventstream (~> 1.0, >= 1.0.2)
backports (3.17.2)
coderay (1.1.3)
concurrent-ruby (1.1.6)
diff-lcs (1.3)
Expand All @@ -36,7 +35,7 @@ GEM
jmespath (1.4.0)
method_source (1.0.0)
minitest (5.14.1)
multi_json (1.14.1)
multi_json (1.15.0)
mustermann (1.1.1)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.2)
Expand All @@ -50,7 +49,7 @@ GEM
puma (4.3.5)
nio4r (~> 2.0)
rack (2.2.3)
rack-protection (2.0.8.1)
rack-protection (2.2.0)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
Expand Down Expand Up @@ -83,18 +82,17 @@ GEM
rubocop-ast (0.0.3)
parser (>= 2.7.0.1)
ruby-progressbar (1.10.1)
ruby2_keywords (0.0.2)
sinatra (2.0.8.1)
ruby2_keywords (0.0.5)
sinatra (2.2.0)
mustermann (~> 1.0)
rack (~> 2.0)
rack-protection (= 2.0.8.1)
rack (~> 2.2)
rack-protection (= 2.2.0)
tilt (~> 2.0)
sinatra-contrib (2.0.8.1)
backports (>= 2.8.2)
sinatra-contrib (2.2.0)
multi_json
mustermann (~> 1.0)
rack-protection (= 2.0.8.1)
sinatra (= 2.0.8.1)
rack-protection (= 2.2.0)
sinatra (= 2.2.0)
tilt (~> 2.0)
thread_safe (0.3.6)
tilt (2.0.10)
Expand All @@ -115,8 +113,8 @@ DEPENDENCIES
require_all (~> 3.0)
rspec (~> 3.4)
rubocop (~> 0.85.0)
sinatra (~> 2.0, >= 2.0.8.1)
sinatra-contrib (~> 2.0, >= 2.0.8.1)
sinatra (~> 2.2)
sinatra-contrib (~> 2.2)

RUBY VERSION
ruby 2.6.2p47
Expand Down