Skip to content

Instantly share code, notes, and snippets.

Created December 17, 2013 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/0325a7ee483a952e5ce0 to your computer and use it in GitHub Desktop.
Save anonymous/0325a7ee483a952e5ce0 to your computer and use it in GitHub Desktop.
Big project gemfile
gem 'rails', '3.2.16'
gem 'pg'
gem 'inherited_resources'
# Users
gem 'devise'
gem 'omniauth-openid'
gem 'cancan'
gem 'paper_trail', '~> 2'
# Views, forms, front-end
gem 'haml', '~> 3.2.0.beta.3'
gem 'haml-rails'
gem 'jquery-rails'
gem 'kaminari'
gem 'has_scope'
gem 'sanitize'
gem 'liquid'
gem 'formtastic'
gem 'formtastic-bootstrap', '~> 2'
gem 'bootstrap-sass', '2.2.1.1'
gem 'flickraw'
gem 'cocoon', '~> 1.1.1'
gem 'jquery_ui_rails_helpers'
gem 'rails3-jquery-autocomplete'
# Attachments
gem 'paperclip'
gem 'aws-sdk', '~> 1.3.4'
# Mailchimp
gem 'gibbon'
# Twitter
gem 'twitter'
# Administration
gem 'nested_form', :git => 'git://github.com/ryanb/nested_form.git', :tag => '0.3.1' # support for multiple forms on the same association
gem 'rails_admin', :git => 'not-real-rul'
# slugging
gem 'friendly_id'
# Fork fixes SASS error in assets compilation.
gem 'ckeditor', "3.7.1", :git => 'git://github.com/paranoida/ckeditor.git'
# Menus
gem 'awesome_nested_set'
gem 'rubytree', :require => 'tree'
# Events
gem 'recurrence', :git => 'git://github.com/chap/recurrence.git', :branch => 'except' # support for :except option
gem 'validates_timeliness', '~> 3.0'
gem 'later_dude'
gem 'chronic'
# Blog & Social
gem 'acts-as-taggable-on'
gem 'rails_admin_tag_list'
# Page & event Excerpts
gem 'nokogiri', '1.5.4'
gem 'html_truncator', "~>0.2"
# Fancy paths
gem 'routing-filter'
# Ecommerce
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby'
# Utilities
gem 'andand'
gem 'unicorn'
gem 'settingslogic'
gem 'state_machine'
gem 'delayed_job_active_record'
gem 'valium'
# For colorful strings.
gem 'colored'
# exception handling
gem 'airbrake', '~>3.1.8'
# Redirection from domain.tld to www.domain.tld (for SSL cert purposes)
gem 'rack-canonical-host'
group :test do
gem 'simplecov'
gem 'machinist', '>= 2.0.0.beta2'
gem 'database_cleaner'
gem 'rspec-rails'
gem 'capybara'
gem 'capybara-webkit'
gem 'capybara-screenshot'
gem 'webmock'
gem 'vcr'
gem 'timecop'
gem 'spork'
gem 'rb-fsevent', '~> 0.9.1'
gem 'guard'
gem 'guard-bundler'
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-pow'
gem 'growl' # Needs growlnotify http://growl.info/downloads
end
group :development do
# Contact Import
# gem 'tiny_tds'
# gem 'activerecord-sqlserver-adapter', '~> 3.2.10'
gem 'quiet_assets'
gem 'heroku'
gem 'taps'
gem 'sqlite3'
gem 'gem-release'
end
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'stitch'
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.2.4'
gem 'jquery-ui-rails'
gem 'turbo-sprockets-rails3'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment