Skip to content

Instantly share code, notes, and snippets.

@supermomonga
Created October 9, 2014 08:06
Show Gist options
  • Save supermomonga/cdb907a785ae8a9cefe9 to your computer and use it in GitHub Desktop.
Save supermomonga/cdb907a785ae8a9cefe9 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
source 'https://rails-assets.org'
gem 'rails', '4.1.6'
gem 'sass-rails', '~> 4.0.3'
gem 'slim-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'omniauth'
gem 'omniauth-github'
gem 'jquery-rails'
gem 'turbolinks', '~> 2.4.0'
gem 'jbuilder', '~> 2.0'
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', '~> 0.4.0', group: :doc
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring', group: :development
gem 'activeadmin', github: 'gregbell/active_admin'
gem 'simple_form', github: 'plataformatec/simple_form'
gem 'friendly_id', '~> 5.0.4'
gem 'cancancan', '~> 1.9'
gem 'unicorn'
gem 'foreman'
# Assets
gem 'bootstrap-sass', '~> 3.2.0.2'
gem 'rails-assets-bootswatch-scss', '~> 3.2.0.3'
gem 'font-awesome-sass', '~> 4.2.0'
gem 'sqlite3'
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'spring'
end
group :test do
gem 'rspec-rails'
gem 'database_cleaner'
gem 'capybara'
gem 'factory_girl_rails'
end
group :production do
gem 'pg'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment