Skip to content

Commit

Permalink
Add thin 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ruedap committed Apr 1, 2013
1 parent 37a7028 commit 0d0fd2b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .example.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
INSTAGRAM_CLIENT_ID=""
INSTAGRAM_CLIENT_SECRET=""
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@

# Ignore .powenv
.powenv

# Ignore .env
.env
6 changes: 2 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@ source 'https://rubygems.org'

gem 'rails', '3.2.13'

# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'pg', '~> 0.14.1'
gem 'haml', '~> 4.0.0'
gem 'haml-rails', '~> 0.4'
Expand All @@ -13,9 +10,10 @@ gem 'sass-rails', '~> 3.2.6'
gem 'compass', '~> 0.12.2'
gem 'compass-rails', '~> 1.0.3'
gem 'bootstrap-sass', '~> 2.3.1.0'
gem 'jquery-rails', '~> 2.2.1'

gem 'instagram', '~> 0.10.0'
gem 'jquery-rails', '~> 2.2.1'
gem 'thin', '~> 1.5.1'

group :assets do
gem 'coffee-rails', '~> 3.2.2'
Expand Down
7 changes: 7 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,9 @@ GEM
sass (~> 3.1)
compass-rails (1.0.3)
compass (>= 0.12.2, < 0.14)
daemons (1.1.9)
erubis (2.7.0)
eventmachine (1.0.3)
execjs (1.4.0)
multi_json (~> 1.0)
faraday (0.8.6)
Expand Down Expand Up @@ -154,6 +156,10 @@ GEM
tilt (~> 1.1, != 1.3.0)
temple (0.5.5)
terminal-table (1.4.5)
thin (1.5.1)
daemons (>= 1.0.9)
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
thor (0.17.0)
tilt (1.3.6)
treetop (1.4.12)
Expand Down Expand Up @@ -183,4 +189,5 @@ DEPENDENCIES
rails (= 3.2.13)
sass (~> 3.2.7)
sass-rails (~> 3.2.6)
thin (~> 1.5.1)
uglifier (>= 1.0.3)
1 change: 1 addition & 0 deletions Procfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
web: bundle exec rails server thin -p $PORT -e $RACK_ENV
3 changes: 3 additions & 0 deletions config.ru
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,6 @@

require ::File.expand_path('../config/environment', __FILE__)
run Nekostagram::Application

# for foreman
$stdout.sync = true

0 comments on commit 0d0fd2b

Please sign in to comment.