source 'https://rubygems.org' | |
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' | |
ruby '2.0.0' | |
gem 'rails', '4.0.7' | |
gem 'pg' | |
gem 'foreigner' | |
gem 'devise' | |
gem 'unicorn' | |
group :production do | |
gem 'rails_12factor' | |
gem 'heroku-deflater' | |
end | |
gem 'rack-cache' | |
gem 'dalli' | |
gem 'kgio' | |
gem 'memcachier' | |
gem 'actionpack-action_caching' | |
gem 'actionview-encoded_mail_to' | |
gem 'acts_as_list' | |
gem 'nested_form' | |
gem 'active_hash' | |
# Heroku add-ons | |
gem 'sentry-raven' | |
gem 'intercom-rails' | |
gem 'newrelic_rpm' | |
gem 'rails_admin' | |
gem 'state_machine' | |
gem 'stripe', :git => 'https://github.com/stripe/stripe-ruby' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', platforms: :ruby | |
gem 'bourbon' | |
gem 'sprockets', '2.10.0' | |
gem 'sprockets-rails', '2.0.1' | |
gem 'sass-rails', '~> 4.0.1' | |
gem "compass-rails", "~> 1.1.3" | |
gem 'coffee-rails' | |
gem 'foundation-rails', "~> 5.0.2.0" | |
gem 'haml_coffee_assets' | |
gem 'execjs' | |
gem 'uglifier', '>= 1.3.0' | |
gem 'foundation-icons-sass-rails' | |
gem 'simple_form' | |
# Use jquery as the JavaScript library | |
gem 'jquery-rails' | |
gem 'jquery-ui-rails' | |
gem "haml-rails" | |
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks | |
gem 'turbolinks' | |
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder | |
gem 'jbuilder', '~> 1.2' | |
group :doc do | |
# bundle exec rake doc:rails generates the API under doc/api. | |
gem 'sdoc', require: false | |
end | |
group :development, :test do | |
gem 'byebug' | |
gem "factory_girl_rails", "~> 4.0" | |
gem "binding_of_caller" | |
gem "better_errors" | |
gem "letter_opener" | |
end | |
group :test do | |
gem 'capybara' | |
gem 'connection_pool' | |
gem 'selenium-webdriver' | |
gem 'database_cleaner' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment