Skip to content

Instantly share code, notes, and snippets.

@scottbaggett
Created March 19, 2012 19:24
Show Gist options
  • Save scottbaggett/2125133 to your computer and use it in GitHub Desktop.
Save scottbaggett/2125133 to your computer and use it in GitHub Desktop.
Gemfile
source 'https://rubygems.org'
gem 'sqlite3'
gem 'rails', '3.2.2'
gem "mysql2"
gem "haml"
gem "slim"
gem "slim-rails"
gem "hpricot"
gem 'compass', '0.12.alpha.4'
gem 'grid-coordinates'
gem 'compass-h5bp'
gem "ckeditor", "3.7.0.rc3"
gem "ruby_parser"
gem "devise", "~> 2.0.0"
gem "therubyracer"
gem 'rails_admin', :git => 'git://github.com/sferik/rails_admin.git'
gem "formtastic"
gem 'sass-rails', '~> 3.2.3'
gem 'meta_search', '>= 1.1.0.pre'
gem 'inherited_resources'
gem "has_scope"
gem 'twitter'
gem 'paperclip', :git => 'git://github.com/thoughtbot/paperclip.git'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'bourbon'
end
group :development do
gem 'wirble' # Colors
end
gem 'jquery-rails'
gem 'html5-rails'
gem 'rspec-rails', :group => [:development, :test]
gem 'database_cleaner', :group => :test
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
gem 'capistrano'
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
gem "mocha", :group => :test
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment