Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
+ server uses thin
  • Loading branch information
floere committed Jun 15, 2011
1 parent 2045b69 commit 2462b3b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Procfile
@@ -1,2 +1,2 @@
server: cd server && bundle exec rake start
web: cd client && bundle exec ruby app.rb -p $PORT
server: cd server; bundle exec thin -R config.ru -p 8080 start
web: cd client; bundle exec ruby app.rb -p $PORT
2 changes: 1 addition & 1 deletion server/Gemfile
Expand Up @@ -21,7 +21,7 @@ gem 'rack_fast_escape', '2009.06.24'

# Optional. Use your preferred web server.
#
gem 'unicorn'
gem 'thin'

# Optional. Use your preferred database adapter.
#
Expand Down
12 changes: 7 additions & 5 deletions server/Gemfile.lock
Expand Up @@ -13,9 +13,10 @@ GEM
activesupport (3.0.7)
arel (2.0.10)
builder (2.1.2)
daemons (1.0.10)
diff-lcs (1.1.2)
eventmachine (0.12.10)
i18n (0.5.0)
kgio (2.4.1)
picky (2.4.2)
picky-client (2.4.2)
activesupport (>= 3.0.0)
Expand All @@ -35,10 +36,11 @@ GEM
diff-lcs (~> 1.1.2)
rspec-mocks (2.6.0)
text (0.2.0)
thin (1.2.11)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
tzinfo (0.3.27)
unicorn (3.6.2)
kgio (~> 2.3)
rack
url_escape (2009.06.24)
yajl-ruby (0.8.2)

Expand All @@ -57,5 +59,5 @@ DEPENDENCIES
rake
rspec
text (~> 0.2.0)
unicorn
thin
yajl-ruby (~> 0.8.1)

0 comments on commit 2462b3b

Please sign in to comment.