Created
February 12, 2014 22:03
-
-
Save adamjonas/8965462 to your computer and use it in GitHub Desktop.
gem file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
# Frameworks | |
gem 'rails', '4.0.2' | |
# Server | |
gem 'unicorn' | |
# Database | |
gem 'pg' | |
gem "redis" | |
gem "hiredis" | |
# Background Jobs | |
gem 'sidekiq' | |
# Localization | |
gem 'phrase', group: :development, require: false | |
gem 'http_accept_language' | |
gem 'rails-i18n', '~> 4.0.0' | |
gem 'iso_country_codes' | |
gem 'postmark-rails' | |
# Deployment | |
gem 'capistrano', group: :development | |
# Authentication | |
gem 'devise' | |
# CMS / ActiveAdmin | |
gem 'activeadmin', git: '[email protected]:gregbell/active_admin.git' | |
# Image Uploads | |
gem 'carrierwave' | |
gem 'mini_magick' | |
gem 'fog' | |
gem 'unf' | |
# State Machine transitions | |
gem "transitions", :require => ["transitions", "active_model/transitions"] | |
# Assets / Front-End | |
gem 'asset_sync' | |
gem 'slim' | |
gem 'axis-rails' | |
gem 'simple_form' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'coffee-rails', '~> 4.0.0' | |
gem 'jquery-rails' | |
gem 'stylus', git: '[email protected]:lucasmazza/ruby-stylus.git' | |
# Mobile Handling | |
gem "mobile-fu" | |
# Error/Performance Logging | |
gem 'sentry-raven', group: [:production, :staging] | |
gem 'newrelic_rpm', group: [:production, :staging] | |
# Heroku | |
gem 'rails_12factor', group: :production | |
# Local Development | |
gem 'quiet_assets', group: :development | |
gem 'better_errors', group: :development | |
gem 'binding_of_caller', group: :development | |
gem 'dotenv-rails', group: [:development, :test] | |
gem "pry", group: :development | |
gem "pry-remote", group: :development | |
# Testing | |
gem 'rspec-rails', '~> 2.0', group: [:development, :test] | |
gem 'factory_girl_rails', group: [:development, :test] | |
gem 'shoulda-matchers', group: :test | |
gem 'faker', group: :test | |
gem 'database_cleaner', group: :test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment