Skip to content

Instantly share code, notes, and snippets.

@agustinf
Created February 23, 2014 21:48
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 agustinf/9177829 to your computer and use it in GitHub Desktop.
Save agustinf/9177829 to your computer and use it in GitHub Desktop.
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.0.3'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem "compass-rails"
# Use jquery as the JavaScript library
gem 'jquery-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'
gem 'protected_attributes'
gem 'aws-sdk'
gem 'mail_view', :git => 'https://github.com/37signals/mail_view.git'
gem 'delayed_job_active_record'
gem 'httpclient'
gem 'scheduler_daemon'
gem "active_model_serializers"
gem 'activeadmin', github: 'gregbell/active_admin'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development, :test do
gem 'annotate'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'debugger', require: 'ruby-debug'
gem 'guard-rspec', require: false
gem 'pry-rails'
gem 'faker'
gem 'quiet_assets'
gem 'better_errors'
gem 'binding_of_caller'
end
group :test do
gem 'shoulda-matchers'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment