Skip to content

Instantly share code, notes, and snippets.

@fredwu
Created September 15, 2010 01:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save fredwu/580095 to your computer and use it in GitHub Desktop.
Save fredwu/580095 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
# --------------------
# Rails
# --------------------
#gem 'arel', :git => 'git://github.com/rails/arel.git'#, :branch => '1-0-stable'
gem 'rails', '~> 3.0.3'
# gem 'rails', :git => 'git://github.com/rails/rails.git', :branch => '3-0-stable'
# --------------------
# Database
# --------------------
gem 'mysql2', :git => 'git://github.com/brianmario/mysql2.git'
gem 'datamappify', '>= 0.2.1'
gem 'by_star', '~> 1.0.0'
gem 'meta_where'#, :git => 'git://github.com/ernie/meta_where.git'
# --------------------
# Resources
# --------------------
gem 'inherited_resources', '~> 1.1.2'
gem 'inherited_resources_views'
# gem 'inherited_resources_views', :path => '/Users/fred/Downloads/Repos/Rails/inherited_resources_views'
gem 'omniauth'
gem 'devise', :git => 'git://github.com/plataformatec/devise.git'
# gem 'cancan', '~> 1.4.0'
gem 'carrierwave', :git => 'git://github.com/jnicklas/carrierwave.git'
gem 'mini_magick'
gem 'acts_as_shopping_cart', :git => 'git://github.com/fredwu/acts_as_shopping_cart.git'
# gem 'acts_as_shopping_cart', :path => '/Users/Fred/Downloads/Repos/_Rails/fredwu-acts_as_shopping_cart'
# gem 'activemerchant', :require => 'active_merchant'
gem 'activemerchant', :git => 'git://github.com/madpilot/active_merchant.git', :require => 'active_merchant'
# --------------------
# Presentation
# --------------------
gem 'haml', '~> 3.0.18'
# gem 'temple', :git => 'git://github.com/judofyr/temple.git'
# gem 'slim', :git => 'git://github.com/stonean/slim.git'
gem 'slim'
gem 'slim-rails', :git => 'git://github.com/leogalmeida/slim-rails.git'
# gem 'slim', :path => '/Users/fred/Downloads/Repos/Rails/slim'
gem 'compass'
gem 'simple_form', '~> 1.2.0'
gem 'simple-navigation', '~> 3.0.0'
gem 'will_paginate', '~> 3.0.pre'
# --------------------
# Assets
# --------------------
gem 'rails_config'
gem 'rdiscount', '>= 1.6.5'
gem 'sanitize'
# gem 'csv-mapper', '>= 0.5.0'
gem 'ffaker', '>= 1.0.0'
gem 'xpath'
gem 'pdfkit'
# --------------------
# Server/Deployment
# --------------------
gem 'rack-ssl-enforcer', :require => 'rack/ssl-enforcer'
# gem 'vidibus-routing_error'
gem 'dalli'
gem 'capistrano-ext'
gem 'deployer', :git => 'git://github.com/meskyanichi/deployer.git'
gem 'bullet', '~> 2.0.0.rc1'
gem 'unicorn'
gem 'thin'
group :development do
gem 'parallel_tests', :git => 'git://github.com/grosser/parallel_tests.git'
end
group :development, :test do
gem 'rspec-rails', '~> 2.1.0'
gem 'steak', :git => 'git://github.com/cavalle/steak.git'
gem 'capybara', :git => 'git://github.com/jnicklas/capybara.git'
gem 'factory_girl', :git => 'git://github.com/thoughtbot/factory_girl.git'
gem 'delorean'
gem 'database_cleaner'
gem 'launchy'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment