summaryrefslogtreecommitdiff
path: root/Gemfile
diff options
context:
space:
mode:
authorelijah <elijah@riseup.net>2013-02-12 23:46:35 -0800
committerelijah <elijah@riseup.net>2013-02-12 23:46:35 -0800
commitea5f89e55c7afde4bf2d6719b0afa8a878082fb5 (patch)
treeb1c974ca423c52a03724f39035fa2a49775acd5c /Gemfile
parente29134d17854d88b4a81456987c28db93f5ec97c (diff)
misc fixes to get working in production mode using Thin.
Diffstat (limited to 'Gemfile')
-rw-r--r--Gemfile42
1 files changed, 7 insertions, 35 deletions
diff --git a/Gemfile b/Gemfile
index 9ed38ca..7748246 100644
--- a/Gemfile
+++ b/Gemfile
@@ -1,52 +1,24 @@
source 'https://rubygems.org'
gem 'rails', '3.2.12'
-
-# Bundle edge Rails instead:
-# gem 'rails', :git => 'git://github.com/rails/rails.git'
-
gem 'sqlite3'
-
gem 'json'
+gem 'markdown-rails' # allows static pages with .md
+gem 'haml' # allow pages with .haml
+gem 'RedCloth' # allow :textile in HAML
+gem 'sass-rails' # not sure why can't be in :assets group
+
# Gems used only for assets and not required
# in production environments by default.
group :assets do
- gem 'sass-rails' #, '~> 3.2.3'
- gem 'haml'
- gem 'RedCloth'
-
- # see https://github.com/iain/http_accept_language
- #gem 'http_accept_language'
- #gem 'http_accept_language', '>= 2.0.0.pre'
-
gem 'uglifier', '>= 1.0.3'
- gem 'execjs'
- # See https://github.com/sstephenson/execjs#readme for more supported runtimes
+ gem 'execjs' # See https://github.com/sstephenson/execjs#readme for supported runtimes
gem 'therubyrhino'
end
gem 'jquery-rails'
-
-# To use ActiveModel has_secure_password
-# gem 'bcrypt-ruby', '~> 3.0.0'
-
-# To use Jbuilder templates for JSON
-# gem 'jbuilder'
-
-# Use unicorn as the web server
-# gem 'unicorn'
-
-# Deploy with Capistrano
-gem 'capistrano'
-
-# To use debugger
-# gem 'ruby-debug'
-
-# allows static pages with .md
-gem 'markdown-rails'
-
-gem 'sass'
+gem 'capistrano' # deploy with Capistrano
group :development do
gem 'thin'