Skip to content

Instantly share code, notes, and snippets.

@cutalion
Created November 28, 2012 00:38
Show Gist options
  • Save cutalion/4158197 to your computer and use it in GitHub Desktop.
Save cutalion/4158197 to your computer and use it in GitHub Desktop.
Gemfile with alphabetically sorted gems
source :gemcutter
source 'http://gems.github.com'
gem 'rails', '3.2.7'
gem 'rake', '0.9.2.2'
gem 'foreman'
gem 'sidekiq', '= 2.4.0'
gem 'sinatra', require: false
# Database and data related [Putting pg to the end because of a weird bug with Lion, pg and openssl]
gem 'pg'
gem 'foreigner'
gem 'activerecord-postgresql-adapter'
gem 'catarse_moip', git: 'git://github.com/devton/catarse_moip.git'
gem 'catarse_paypal_express', git: 'git://github.com/devton/catarse_paypal_express.git'
gem 'moip', git: 'git://github.com/moiplabs/moip-ruby.git'
gem 'dalli'
gem 'draper'
gem 'maxim-sexy_pg_constraints'
# Frontend stuff
gem 'jquery-rails'
gem 'slim'
gem 'slim-rails'
# Authentication and Authorization
gem 'cancan'
gem 'devise', '1.5.3'
gem 'omniauth', '~> 1.1.0'
gem 'omniauth-facebook', '~> 1.2.0'
gem 'omniauth-github', '~> 1.0.1'
gem 'omniauth-linkedin', '~> 0.0.6'
gem 'omniauth-openid', '~> 1.0.1'
gem 'omniauth-twitter', '~> 0.0.12'
gem 'omniauth-yahoo', '~> 0.0.4'
# Error reporting
gem 'airbrake'
# Email marketing
gem 'catarse_mailchimp'
# HTML manipulation and formatting
gem 'auto_html', '= 1.4.2'
gem 'formtastic', '~> 2.1.1'
gem 'kaminari'
gem 'rails_autolink', '~> 1.0.7'
# Uploads
gem 'carrierwave', '~> 0.7.0'
gem 'fog'
gem 'rmagick'
# Other Tools
gem 'brcep'
gem 'enumerate_it'
gem 'feedzirra'
gem 'has_scope'
gem 'has_vimeo_video', '~> 0.0.5'
gem 'httparty', '~> 0.6.1'
gem 'inherited_resources', '1.3.1'
gem 'on_the_spot'
gem 'rack-timeout'
gem 'RedCloth'
gem 'spectator-validates_email', require: 'validates_email'
gem 'tumblr-api'
gem 'unicode'
gem 'validation_reflection', git: 'git://github.com/ncri/validation_reflection.git'
gem 'weekdays'
gem 'wirble'
# Translations
gem 'http_accept_language'
gem 'routing-filter' #, :git => 'git://github.com/svenfuchs/routing-filter.git'
gem 'web_translate_it'
# Administration
gem 'activeadmin', git: 'git://github.com/gregbell/active_admin.git'
gem 'meta_search', '1.1.3'
# Payment
gem 'activemerchant', '1.17.0', require: 'active_merchant'
gem 'bourbon'
gem 'httpclient', '2.2.5'
gem 'paypal-express', :require => 'paypal'
gem 'selenium-webdriver', '~> 2.25.0'
# Server
gem 'thin'
group :assets do
gem 'coffee-rails', '~> 3.2.2'
gem 'compass-960-plugin', '~> 0.10.4'
gem 'compass-rails', '~> 1.0.2'
gem 'sass-rails', '~> 3.2.5'
gem 'uglifier', '>= 1.0.3'
end
group :test, :development do
gem 'annotate'
gem 'capybara', '>= 1.0.1'
gem 'database_cleaner'
gem 'factory_girl_rails', '1.7.0'
gem 'launchy'
gem 'mocha', '0.10.4'
gem 'rcov', '= 0.9.11'
gem 'rspec-rails', '~> 2.10.0'
gem 'shoulda'
gem 'steak', '~> 1.1.0'
end
group :development do
gem 'mailcatcher'
gem 'ruby-debug19'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment