Created
November 6, 2011 14:49
-
-
Save krisleech/1342979 to your computer and use it in GitHub Desktop.
Gemfile
This file contains hidden or 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
source 'http://rubygems.org' | |
gem 'bundler' | |
gem 'rails', '3.0.10' | |
gem 'ancestry' | |
gem 'acts_as_list', :git => 'git://github.com/swanandp/acts_as_list.git' # has default_scope fix | |
gem 'nested_set' | |
gem 'mechanize' | |
gem 'nokogiri'#, '~>1.5.0' | |
gem 'geocoder' | |
gem 'rack-cache', :require => 'rack/cache' | |
gem 'dragonfly', :git => 'git://github.com/krisleech/dragonfly.git', :branch => 'torquebox_fix' # The fix is applied to v0.9.3 | |
gem 'devise', '1.4.7' # Replace with 1.4.9 when released to fix https://github.com/plataformatec/devise/issues/1390 | |
gem 'settingslogic' | |
gem 'cancan' | |
gem 'formtastic', '~>1.0' | |
gem 'rails3-jquery-autocomplete' | |
gem 'jquery-rails' | |
gem 'ckeditor' | |
gem 'formtastic_datepicker_inputs' | |
gem 'sanitize' | |
gem 'sunspot_rails', '~> 1.2.1' | |
gem 'will_paginate' | |
gem 'phony' | |
gem "compass", ">= 0.11.1" | |
gem 'flying_saucer' | |
# platforms :jruby do | |
gem 'ffi-ncurses' | |
gem "activerecord-jdbcmysql-adapter", "1.1.1" | |
gem "jruby-openssl" | |
gem "torquebox-rake-support", "1.0.1" | |
gem "torquebox", '1.0.1' | |
# end | |
# Gem need to be in development and test if they have rake tasks | |
group :development, :test do | |
gem 'rspec-rails' | |
end | |
group :development do | |
gem 'reek' | |
gem 'roodi' | |
gem 'flay' | |
gem 'flog' | |
gem 'Saikuro' | |
gem 'watchr' | |
gem 'mynyml-redgreen' | |
gem 'mailcatcher' | |
gem 'guard-rspec' | |
end | |
group :test do | |
gem 'factory_girl_rails' | |
gem 'capybara' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment