Created
June 14, 2012 05:00
-
-
Save tomciopp/2928062 to your computer and use it in GitHub Desktop.
My gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gem 'rails', '~> 3.2.6' | |
gem "pg", "~> 0.11.0" | |
gem 'devise', '~> 1.4.3' | |
gem 'devise-async' | |
gem 'geocoder' | |
gem 'bourbon' | |
gem "simple_form", "~> 2.0.1" | |
gem 'will_paginate', '> 3.0' | |
gem 'kaminari' | |
gem 'thinking-sphinx' | |
gem 'flying-sphinx', '~> 0.6.4' | |
gem "cancan" | |
gem "delayed_job_active_record" | |
gem "delayed_job_web" | |
gem "daemons" | |
gem "exception_notification" | |
gem "date_validator" | |
gem "stripe" | |
gem "wicked" | |
gem "carrierwave", git: "git://github.com/jnicklas/carrierwave.git" | |
gem "rmagick" | |
gem "carrierwave_backgrounder" | |
gem "whenever", require: false | |
gem 'sextant' | |
gem "fog", "~> 1.3.1" | |
gem "rails_admin" | |
gem 'ts-delayed-delta', '1.1.2', | |
:require => 'thinking_sphinx/deltas/delayed_delta' | |
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
gem 'dynamic_form' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
gem 'jquery-rails' | |
group :test, :development do | |
gem 'rspec-rails', '~> 2.5' | |
gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i | |
gem 'guard-rspec' | |
gem 'guard-livereload' | |
end | |
group :development do | |
gem "letter_opener" | |
end | |
group :test do | |
gem 'cucumber-rails' | |
gem 'capybara' | |
gem 'database_cleaner' | |
gem 'email_spec' | |
gem 'launchy' | |
gem 'factory_girl' | |
end | |
# To use debugger | |
# gem 'ruby-debug19', :require => 'ruby-debug' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment