Update some Ruby dependencies to include Sinatra 2.0.1

Thanks github for the notice!
This commit is contained in:
R. Tyler Croy 2018-02-20 14:14:13 -08:00
parent 99c0e7adf2
commit 671ed879b2
No known key found for this signature in database
GPG Key ID: 1426C7DC3F51E16F
2 changed files with 35 additions and 34 deletions

View File

@ -1,67 +1,65 @@
GEM
remote: https://rubygems.org/
specs:
ast (2.3.0)
ast (2.4.0)
concurrent-ruby (1.0.5)
diff-lcs (1.3)
faraday (0.13.1)
faraday (0.14.0)
multipart-post (>= 1.2, < 3)
faraday_middleware (0.12.2)
faraday (>= 0.7.4, < 1.0)
haml (5.0.2)
haml (5.0.4)
temple (>= 0.8.0)
tilt
httmultiparty (0.3.16)
httparty (>= 0.7.3)
mimemagic
multipart-post
httparty (0.15.6)
httparty (0.16.0)
multi_xml (>= 0.5.2)
mimemagic (0.3.2)
mini_cache (1.1.0)
multi_xml (0.6.0)
multipart-post (2.0.0)
mustermann (1.0.1)
parallel (1.12.0)
parser (2.4.0.0)
ast (~> 2.2)
mustermann (1.0.2)
parallel (1.12.1)
parser (2.5.0.0)
ast (~> 2.4.0)
powerpack (0.1.1)
puma (3.10.0)
rack (2.0.3)
rack-protection (2.0.0)
puma (3.11.2)
rack (2.0.4)
rack-protection (2.0.1)
rack
rainbow (2.2.2)
rake
rake (12.0.0)
rspec (3.6.0)
rspec-core (~> 3.6.0)
rspec-expectations (~> 3.6.0)
rspec-mocks (~> 3.6.0)
rspec-core (3.6.0)
rspec-support (~> 3.6.0)
rspec-expectations (3.6.0)
rainbow (3.0.0)
rspec (3.7.0)
rspec-core (~> 3.7.0)
rspec-expectations (~> 3.7.0)
rspec-mocks (~> 3.7.0)
rspec-core (3.7.1)
rspec-support (~> 3.7.0)
rspec-expectations (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-mocks (3.6.0)
rspec-support (~> 3.7.0)
rspec-mocks (3.7.0)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.6.0)
rspec-support (3.6.0)
rubocop (0.49.1)
rspec-support (~> 3.7.0)
rspec-support (3.7.1)
rubocop (0.52.1)
parallel (~> 1.10)
parser (>= 2.3.3.1, < 3.0)
parser (>= 2.4.0.2, < 3.0)
powerpack (~> 0.1)
rainbow (>= 1.99.1, < 3.0)
rainbow (>= 2.2.2, < 4.0)
ruby-progressbar (~> 1.7)
unicode-display_width (~> 1.0, >= 1.0.1)
ruby-progressbar (1.8.1)
ruby-progressbar (1.9.0)
sentry-api (0.3.3)
httmultiparty (~> 0.3.16)
sentry-raven (2.6.3)
sentry-raven (2.7.2)
faraday (>= 0.7.6, < 1.0)
sinatra (2.0.0)
sinatra (2.0.1)
mustermann (~> 1.0)
rack (~> 2.0)
rack-protection (= 2.0.0)
rack-protection (= 2.0.1)
tilt (~> 2.0)
temple (0.8.0)
tilt (2.0.8)
@ -84,4 +82,4 @@ DEPENDENCIES
sinatra
BUNDLED WITH
1.15.3
1.16.1

View File

@ -19,6 +19,9 @@ depends: Gemfile
run: depends
./scripts/ruby bundle exec puma
update: Gemfile
./scripts/ruby bundle update
check-container: container
docker run --rm $(IMAGE_NAME):latest bundle exec puma --version
@ -31,4 +34,4 @@ deploy: container
clean:
rm -rf vendor
.PHONY: all depends clean run check container spec check-container rubocop
.PHONY: all depends clean run check container update spec check-container rubocop