Skip to content

Instantly share code, notes, and snippets.

@mlzboy
Forked from fredwu/gist:580095
Created October 31, 2010 14:33
Show Gist options
  • Save mlzboy/656656 to your computer and use it in GitHub Desktop.
Save mlzboy/656656 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
# --------------------
# Rails
# --------------------
gem 'rake'
gem 'arel', :git => 'git://github.com/rails/arel.git'#, :branch => '1-0-stable'
# gem 'rails', '~> 3.0.0'
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 'slim_scrooge', '~> 1.0.10', :group => :production
gem 'meta_where', :git => 'git://github.com/ernie/meta_where.git', :branch => 'arel-2.0'
# --------------------
# Resources
# --------------------
gem 'inherited_resources', '~> 1.1.2'
gem 'inherited_resources_views'
gem 'devise', '~> 1.1.2'
gem 'cancan', '~> 1.3.0'
gem 'carrierwave', :git => 'git://github.com/jnicklas/carrierwave.git'
# --------------------
# Presentation
# --------------------
gem 'haml', '~> 3.0.18'
gem 'temple', :git => 'git://github.com/judofyr/temple.git'
gem 'slim', :git => 'git://github.com/stonean/slim.git'#, :branch => 'temple'
gem 'escape_utils'
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 'rubyzip', :require => 'zip/zip'
gem 'csv-mapper', '>= 0.5.0'
gem 'ffaker', '>= 0.4.0'
gem 'xpath'
# --------------------
# Server/Deployment
# --------------------
gem 'vidibus-routing_error'
gem 'dalli'
gem 'thin'
gem 'capistrano-ext'
gem 'deployer', :git => 'git://github.com/meskyanichi/deployer.git'
gem 'hoptoad_notifier'
gem 'newrelic_rpm'
group :development do
gem 'bullet', '~> 2.0.0.rc1'
gem 'hpricot', '>= 0.8.2'
gem 'ruby_parser', '>= 2.0.4'
gem 'parallel_tests', :git => 'git://github.com/grosser/parallel_tests.git'
end
group :development, :test do
gem 'rspec-rails', '~> 2.0.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