Skip to content

Instantly share code, notes, and snippets.

@j4p3
Created February 3, 2016 21:28
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 j4p3/bfafaab881d5968f0eab to your computer and use it in GitHub Desktop.
Save j4p3/bfafaab881d5968f0eab to your computer and use it in GitHub Desktop.
DayWon API gemfile
source 'http://rubygems.org'
# API Core
ruby '2.0.0'
gem 'rails', '~> 4.0.1'
gem 'rails-api', '~> 0.1.0'
gem 'rabl', '~> 0.9.1'
gem 'json', '~> 1.8.1'
gem 'oj', '~> 2.7.3'
gem 'soft_deletion', '~> 0.5.6'
gem 'will_paginate', '~> 3.0.6'
# Google API & Auth
gem 'devise', '~> 3.2.4'
gem 'omniauth-google-oauth2', '~> 0.2.3'
gem 'google-api-client', '~> 0.7.1'
# patched contacts gem for blank fields bugfix, extended properties
gem 'google-contacts', git: 'https://ba5a60510d279888437974f7b73aa6fc3ab0b6f:x-oauth-basic@github.com/bonnerjp/google-contacts.git'
# gem 'google-contacts', path: '/Users/jp/src/google-contacts' # for local testing only
gem 'ice_cube', '~> 0.11.3' # recurrence
# Worker processes
gem 'redis', '~> 3.0.6'
gem 'sidekiq', '~> 2.17.2'
gem 'sidekiq-status', '~> 0.5.1'
# Mail
gem 'mandrill-api', '~> 1.0.50'
gem 'mailchimp-api', '~> 2.0.5'
# Heroku setup
gem 'rails_12factor'
gem 'pg'
gem 'unicorn'
gem 'heroku', '~> 3.2.2'
gem 'thread_safe', '~> 0.3.3'
gem 'newrelic_rpm'
group :test, :development do
gem 'annotate', '~> 2.5.0'
gem 'debugger', '~> 1.6.8'
# Testing & seeding
gem 'faker', '~> 1.2.0'
gem 'rspec-rails'
gem 'rspec_api_test'
gem 'pry'
gem 'factory_girl_rails', '~> 4.3.0', :require => false
end
# Extras
gem 'awesome_print', '~> 1.2.0'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment