Skip to content

Instantly share code, notes, and snippets.

@ryanclark2
Created January 22, 2014 21:12
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 ryanclark2/8567429 to your computer and use it in GitHub Desktop.
Save ryanclark2/8567429 to your computer and use it in GitHub Desktop.
Gemfile
source 'https://rubygems.org'
# server
ruby "2.0.0"
gem 'rails', '3.2.13'
gem 'pg'
gem 'newrelic_rpm'
gem 'nokogiri'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
gem 'zurb-foundation'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'meta_request'
gem 'pry'
gem "rails-erd"
gem 'bullet'
gem "hirb"
end
gem "minitest-rails"
group :test do
gem "minitest-rails-capybara"
gem 'guard-minitest'
end
# active admin
# downgraded from bald cos active admin complained when switching to ruby 2
gem 'jquery-rails', '2.3.0'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# utilities
gem 'activeadmin'
gem 'aws-sdk'
gem "paperclip", "~> 3.0"
#gem 'high_voltage'
gem 'thin'
gem 'rb_wunderground'
gem 'draper', '~> 1.0'
gem 'newrelic_rpm'
gem 'delayed_job_active_record'
gem 'kaminari'
gem 'gibbon'
gem 'whenever', :require => false
gem 'rich'
#gem 'active_admin_editor'
#gem 'dragonfly', "~>0.9.15"
# gem 'activeadmin-dragonfly', github: 'stefanoverna/activeadmin-dragonfly'
# gem 'activeadmin-wysihtml5', github: 'stefanoverna/activeadmin-wysihtml5'
# gem 'dragonfly-s3_data_store', "~>1.0.0"
# gem 'cache_digests'
gem 'dotenv-rails', :groups => [:development, :test]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment