Skip to content

Instantly share code, notes, and snippets.

@gcman105
Created August 23, 2012 09:24
Show Gist options
  • Save gcman105/3434598 to your computer and use it in GitHub Desktop.
Save gcman105/3434598 to your computer and use it in GitHub Desktop.
Rails 3.2.8 with Postgresql
source 'https://rubygems.org'
gem 'rails', '3.2.8'
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# ----------------------------------------------------------
# rails new APPNAME -T -d postgresql
#
# use this file as the Gemfile and run
#
# bundle update
# bundle exec compass init --using susy
# ----------------------------------------------------------
gem 'pg'
# Gems used only within varous groups
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem "susy", "~> 1.0.rc.4"
gem 'compass', '>= 0.13.alpha.0'
gem 'compass-rails', '>= 1.0.2'
gem 'compass-h5bp'
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
group :development do
end
group :test do
gem 'factory_girl_rails'
gem 'capybara'
gem 'cucumber-rails', :require => false
gem 'database_cleaner'
end
group :test, :development do
gem 'ruby_gntp'
gem 'jazz_hands'
gem 'rspec-rails'
gem 'guard-cucumber'
gem 'guard-rspec'
gem 'guard-livereload'
end
gem 'jquery-rails'
gem 'redcarpet'
gem 'draper'
# Use thin as the app server
gem 'thin'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment