Skip to content

Instantly share code, notes, and snippets.

@apellizzn
Created January 30, 2015 08:54
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 apellizzn/30c7ff1fdd94def81308 to your computer and use it in GitHub Desktop.
Save apellizzn/30c7ff1fdd94def81308 to your computer and use it in GitHub Desktop.
Gemfile capistrano
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rake'
gem 'rails', '4.0.9'
# environment variables
gem 'dotenv-rails'
gem 'puma'
gem 'oauth2'
gem 'devise'
gem 'devise_invitable', '=1.3.3'
gem 'doorkeeper'
gem 'rack-protection'
gem 'rack-cors', require: 'rack/cors'
gem 'mongoid'
gem 'bson_ext'
gem 'mongoid-paperclip', require: 'mongoid_paperclip'
gem 'active_model_serializers', '=0.8'
gem 'activeresource'
gem 'rails_config'
group :development do
gem 'capistrano', '~> 3.3.0'
gem 'capistrano-rails', '~> 1.1'
gem 'rvm1-capistrano3', require: false
end
group :production do
# aws environment integration
gem 'aws-sdk'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment