Commit 1274c0dc7aab506acc1e3846f557e0b0e5c0cc53

Authored by Nathan Broadbent
1 parent 9570ef8e
Exists in master and in 1 other branch production

Use 'thin' for development.

Showing 2 changed files with 10 additions and 0 deletions   Show diff stats
Gemfile
... ... @@ -53,6 +53,9 @@ group :heroku do
53 53 gem 'unicorn'
54 54 end
55 55  
  56 +# Use thin for development
  57 +gem 'thin', :group => :development, :platform => :ruby
  58 +
56 59 # Gems used only for assets and not required
57 60 # in production environments by default.
58 61 group :assets do
... ...
Gemfile.lock
... ... @@ -44,6 +44,7 @@ GEM
44 44 css_parser (1.2.6)
45 45 addressable
46 46 rdoc
  47 + daemons (1.1.8)
47 48 database_cleaner (0.6.7)
48 49 debugger (1.1.3)
49 50 columnize (>= 0.3.1)
... ... @@ -61,6 +62,7 @@ GEM
61 62 mail (~> 2.2)
62 63 rspec (~> 2.0)
63 64 erubis (2.7.0)
  65 + eventmachine (0.12.10)
64 66 execjs (1.4.0)
65 67 multi_json (~> 1.0)
66 68 fabrication (1.3.2)
... ... @@ -200,6 +202,10 @@ GEM
200 202 tilt (~> 1.1, != 1.3.0)
201 203 therubyracer (0.10.1)
202 204 libv8 (~> 3.3.10)
  205 + thin (1.3.1)
  206 + daemons (>= 1.0.9)
  207 + eventmachine (>= 0.12.6)
  208 + rack (>= 1.0.0)
203 209 thor (0.14.6)
204 210 tilt (1.3.3)
205 211 treetop (1.4.10)
... ... @@ -257,6 +263,7 @@ DEPENDENCIES
257 263 ruby-debug
258 264 ruby-fogbugz
259 265 therubyracer
  266 + thin
260 267 uglifier (>= 1.0.3)
261 268 unicorn
262 269 useragent (~> 0.3.1)
... ...