Skip to content

Instantly share code, notes, and snippets.

@steveluscher
Created August 26, 2012 16:43
Show Gist options
  • Select an option

  • Save steveluscher/3481561 to your computer and use it in GitHub Desktop.

Select an option

Save steveluscher/3481561 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Rails
gem 'rails', '3.2.8'
# Database - MySQL
gem 'mysql2'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
# Coffeescript
gem 'coffee-rails'
# jQuery
gem 'jquery-rails'
# TODO: Use the animation mixins when the final versions of SASS 3.2 and bootstrap-sass 2.0.3 are released
gem 'sass-rails'
# Twitter Bootstrap
gem 'bootstrap-sass'
# Compass
gem 'compass-rails'
# Sassy Noise
gem 'sassy_noise'
# Animation mixins for Compass
gem 'animation'
# Speed the compilation of those sprites
gem 'oily_png'
# jQuery UI
gem 'jquery-ui-rails'
# Chosen
gem 'chosen-rails'
# SpinJS
gem 'spinjs-rails'
# Javascript time zone detection
gem 'detect_timezone_rails'
# qTip2
gem 'jquery-qtip2-rails', git: 'https://github.com/steveluscher/jquery-qtip2-rails.git'
# Uglifier
gem 'uglifier', '>= 1.0.3'
end
# HAML
gem 'haml-rails'
gem 'coffee-filter'
# Simple form
gem 'simple_form'
# Sorcery for authentication
gem 'sorcery'
# Email validation
gem 'validates_email_format_of'
# State Machine
gem 'state_machine'
# ActiveMerchant
gem 'activemerchant'
# Stripe!
gem 'stripe'
# Deploy with Capistrano
# gem 'capistrano'
group :development do
gem 'debugger'
gem 'quiet_assets'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment