Skip to content

Instantly share code, notes, and snippets.

@ernesto-jimenez
Created October 14, 2012 20:46
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 ernesto-jimenez/3889773 to your computer and use it in GitHub Desktop.
Save ernesto-jimenez/3889773 to your computer and use it in GitHub Desktop.
Rails Rumble gemfile
# Gemfile for http://splitpay.at
source 'https://rubygems.org'
gem 'rails', '3.2.8'
gem 'rack-force_domain'
gem 'paypal_adaptive'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'omniauth-paypal', :git => 'https://github.com/surferdwa/omniauth-paypal.git'
gem 'gravatar_image_tag'
gem 'turbolinks'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails', '~> 3.2.3'
group :assets do
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
# 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'
group :development, :test do
gem 'autotest-rails'
gem 'autotest-growl'
gem 'autotest-fsevent'
end
# Deploy with Capistrano
gem 'capistrano'
gem 'lograge'
group :production do
gem 'mysql2' # If using mysql in development, this can be outside the production group.
gem 'therubyracer'
end
# To use debugger
group :development do
gem 'debugger'
gem 'quiet_assets'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment