Skip to content

Instantly share code, notes, and snippets.

@funglaub
Created July 13, 2011 11:05
Show Gist options
  • Save funglaub/1080104 to your computer and use it in GitHub Desktop.
Save funglaub/1080104 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rake', '0.8.7'
gem 'rails', '3.1.0.rc4'
gem 'jquery-rails', "~> 1.0.12"
# Asset template engines
gem 'sass'
gem 'coffee-script'
gem 'uglifier'
# Uglifier and coffee-script currently require a JS interpreter.
# http://yehudakatz.com/2011/06/14/what-the-hell-is-happening-to-rails/
gem 'therubyracer'
# Older versions don't build on windows machines
gem 'eventmachine', '>=1.0.0.beta.3'
# Deploy with Capistrano
gem 'capistrano'
# Devise & Omni-Auth
# Mongrel is needed to handle the very long URL's for external authentication
gem 'devise'
gem 'omniauth', '0.2.5'
gem 'mongrel', '~> 1.2.0.pre2'
gem 'daemons', '~> 1.0.10'
# Formtastic for rails 3.1.x
gem 'formtastic', '~> 2.0.0.rc3'
# Nifty inline JS validations
gem 'client_side_validations'
# Faye
gem 'faye'
gem 'awesome_nested_set'
# Paper Trail (Undo)
gem 'paper_trail'
# Kaminari (Paginate)
gem 'kaminari'
# acts as state machine
gem 'aasm'
# Bluecloth (markdown)
gem 'redcarpet'
# BBCode for the plebs
gem "rbbcode", "~> 0.1.11"
# Acts as list
gem 'acts_as_list'
# Paperclip handles attachments
gem "paperclip", "~> 2.3"
# Tags
gem 'acts-as-taggable-on'
# JQuery Autocomplete
# gem 'rails3-jquery-autocomplete'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :development, :test do
gem 'sqlite3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment