Skip to content
This repository has been archived by the owner on Jun 9, 2020. It is now read-only.

Commit

Permalink
Thin -> Puma
Browse files Browse the repository at this point in the history
  • Loading branch information
steveklabnik committed Feb 24, 2013
1 parent 509a0eb commit 3cd0f04
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 7 deletions.
4 changes: 3 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ gem 'rack', "1.3.10"

gem 'sinatra_warden'
gem 'sinatra-subdomain'
gem 'thin'
gem 'rake'
gem 'haml'
gem 'redcarpet'
gem 'sinatra-contrib'

gem 'puma'
gem 'foreman'
13 changes: 7 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,12 @@ GEM
remote: https://rubygems.org/
specs:
backports (2.6.3)
daemons (1.1.5)
eventmachine (0.12.10)
foreman (0.61.0)
thor (>= 0.13.6)
haml (3.1.4)
puma (1.6.3)
rack (~> 1.2)
rack (1.3.10)
rack-protection (1.1.4)
rack
Expand All @@ -28,10 +31,7 @@ GEM
sinatra_warden (0.3.2)
sinatra (>= 1.0.0)
warden (~> 1.0)
thin (1.3.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.17.0)
tilt (1.3.3)
warden (1.1.0)
rack (>= 1.0)
Expand All @@ -40,12 +40,13 @@ PLATFORMS
ruby

DEPENDENCIES
foreman
haml
puma
rack (= 1.3.10)
rake
redcarpet
sinatra
sinatra-contrib
sinatra-subdomain
sinatra_warden
thin
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: rackup -s puma -p $PORT
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
## Blog

This is my blog.

The code is terrible, but I just don't care. Pull requests welcome, if you feel
like hacking at it. Articles are all in the posts directory, if you want to fix
a typo.

## Usage

```
$ bundle
$ bundle exec foreman start
```

0 comments on commit 3cd0f04

Please sign in to comment.