1
0
mirror of https://github.com/danbee/tube-status-server synced 2025-03-04 08:39:12 +00:00

Update ruby and switch to Puma.

This commit is contained in:
Daniel Barber 2015-05-19 14:39:19 +01:00
parent deaa41c95e
commit 6b96a8a73c
4 changed files with 7 additions and 19 deletions

View File

@ -1 +1 @@
2.2.1 2.2.2

10
Gemfile
View File

@ -1,5 +1,5 @@
source 'https://rubygems.org' source 'https://rubygems.org'
ruby '2.2.1' ruby '2.2.2'
gem 'sinatra' gem 'sinatra'
gem 'faraday' gem 'faraday'
@ -10,10 +10,4 @@ gem 'rack-cors'
gem 'newrelic_rpm' gem 'newrelic_rpm'
group :development do gem 'puma'
gem 'shotgun'
end
group :production do
gem 'thin'
end

View File

@ -1,9 +1,7 @@
GEM GEM
remote: https://rubygems.org/ remote: https://rubygems.org/
specs: specs:
daemons (1.1.9)
dotenv (1.0.2) dotenv (1.0.2)
eventmachine (1.0.7)
faraday (0.9.1) faraday (0.9.1)
multipart-post (>= 1.2, < 3) multipart-post (>= 1.2, < 3)
foreman (0.77.0) foreman (0.77.0)
@ -11,20 +9,16 @@ GEM
thor (~> 0.19.1) thor (~> 0.19.1)
multipart-post (2.0.0) multipart-post (2.0.0)
newrelic_rpm (3.10.0.279) newrelic_rpm (3.10.0.279)
puma (2.11.1)
rack (>= 1.1, < 2.0)
rack (1.6.0) rack (1.6.0)
rack-cors (0.3.1) rack-cors (0.3.1)
rack-protection (1.5.3) rack-protection (1.5.3)
rack rack
shotgun (0.9.1)
rack (>= 1.0)
sinatra (1.4.5) sinatra (1.4.5)
rack (~> 1.4) rack (~> 1.4)
rack-protection (~> 1.4) rack-protection (~> 1.4)
tilt (~> 1.3, >= 1.3.4) tilt (~> 1.3, >= 1.3.4)
thin (1.6.3)
daemons (~> 1.0, >= 1.0.9)
eventmachine (~> 1.0)
rack (~> 1.0)
thor (0.19.1) thor (0.19.1)
tilt (1.4.1) tilt (1.4.1)
xml-simple (1.1.5) xml-simple (1.1.5)
@ -36,8 +30,7 @@ DEPENDENCIES
faraday faraday
foreman foreman
newrelic_rpm newrelic_rpm
puma
rack-cors rack-cors
shotgun
sinatra sinatra
thin
xml-simple xml-simple

1
Procfile Normal file
View File

@ -0,0 +1 @@
web: bundle exec puma -p $PORT