Bundle thin so that it can be used instead of WEBrick

This commit is contained in:
Thibault Jouan 2012-05-12 15:54:26 +00:00
parent 85efa1729d
commit 90327a05e5
2 changed files with 8 additions and 0 deletions

View File

@ -11,6 +11,7 @@ gem 'bcrypt-ruby', '~> 3.0'
gem 'rabl', '~> 0.6' gem 'rabl', '~> 0.6'
group :development, :test do group :development, :test do
gem 'thin', '~> 1.3'
gem 'rspec-rails', '~> 2.6' gem 'rspec-rails', '~> 2.6'
gem 'capybara', '~> 1.1' gem 'capybara', '~> 1.1'
gem 'factory_girl_rails', '~> 1.2' gem 'factory_girl_rails', '~> 1.2'

View File

@ -40,8 +40,10 @@ GEM
xpath (~> 0.1.4) xpath (~> 0.1.4)
childprocess (0.3.1) childprocess (0.3.1)
ffi (~> 1.0.6) ffi (~> 1.0.6)
daemons (1.1.8)
diff-lcs (1.1.3) diff-lcs (1.1.3)
erubis (2.7.0) erubis (2.7.0)
eventmachine (0.12.10)
factory_girl (2.6.4) factory_girl (2.6.4)
activesupport (>= 2.3.9) activesupport (>= 2.3.9)
factory_girl_rails (1.7.0) factory_girl_rails (1.7.0)
@ -126,6 +128,10 @@ GEM
hike (~> 1.2) hike (~> 1.2)
rack (~> 1.0) rack (~> 1.0)
tilt (~> 1.1, != 1.3.0) tilt (~> 1.1, != 1.3.0)
thin (1.3.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.14.6) thor (0.14.6)
tilt (1.3.3) tilt (1.3.3)
treetop (1.4.10) treetop (1.4.10)
@ -154,3 +160,4 @@ DEPENDENCIES
rspec-rails (~> 2.6) rspec-rails (~> 2.6)
shoulda-matchers (~> 1.0) shoulda-matchers (~> 1.0)
spork (~> 0.9.0.rc) spork (~> 0.9.0.rc)
thin (~> 1.3)