Skip to content

Instantly share code, notes, and snippets.

@Psli
Created May 5, 2011 06:49
Show Gist options
  • Save Psli/956650 to your computer and use it in GitHub Desktop.
Save Psli/956650 to your computer and use it in GitHub Desktop.
Gemfile
source 'http://rubygems.org'
gem 'rails', '3.1.0.beta1'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
# Asset template engines
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
gem 'jquery-rails'
gem 'mysql2'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'moneta'
gem 'yajl-ruby', :require => 'yajl'
gem 'nokogiri'
# Form
# gem "nested_form"
# Paginator
# gem "kaminari"
# gem 'will_paginate', '3.0.pre2'
# File Uploads
# gem 'paperclip'
# gem 'carrierwave'
# gem 'devise', '~> 1.3.0'
# gem "cancan"
# gem "simple_form"
# gem 'fastercsv' # for Ruby 1.8.7+
# gem 'prawn'
# gem "haml"
# gem "haml-rails"
# gem 'validates_timeliness', '~> 3.0.5'
# gem 'acts-as-taggable-on'
# gem 'hoptoad_notifier'
# gem 'newrelic_rpm'
gem 'SystemTimer' if RUBY_VERSION =~ /^1.8/
group :test do
# Pretty printed test output
gem 'turn', :require => false
end
group :test, :development do
gem "rspec", "~> 2.5.0"
gem "rspec-rails", "~> 2.5.0"
gem "factory_girl_rails"
gem "shoulda-matchers"
gem "rcov"
gem "delorean"
gem "watchr"
# gem "capybara"
# gem 'yard'
# gem "bluecloth"
end
# State machine
# gem 'aasm'
# gem 'state_machine'
# HTTP client
# gem 'typhoeus'
# gem 'rest-client', :require => 'restclient'
# Memcached client
# gem "dalli"
# gem "memcache-client", :require => "memcache"
# Deployment tool
# gem 'capistrano'
# gem 'whiskey_disk'
# Debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug19', :require => 'ruby-debug'
# gem 'ruby-debug'
# Background Processing
# gem 'delayed_job'
# gem 'resque'
# Full-text search engine
# gem 'thinking-sphinx', '~> 2.0.2', :require => 'thinking_sphinx'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment