summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Gemfile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Gemfile b/Gemfile
index da327fd..2cf8424 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,14 +5,20 @@ gem 'rails', '3.2.14'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
-gem 'sqlite3'
-
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'uglifier', '>= 1.0.3'
end
+group :development, :test do
+ gem 'sqlite3'
+end
+
+group :production do
+ gem 'pg'
+end
+
gem 'jquery-rails'
gem 'thin'