Skip to content

Instantly share code, notes, and snippets.

@ariejan
Created October 19, 2011 13:02
Show Gist options
  • Save ariejan/1298218 to your computer and use it in GitHub Desktop.
Save ariejan/1298218 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.1.0'
gem 'rack', '1.3.3'
group :assets do
gem 'sass-rails', "~> 3.1.0.rc"
gem 'coffee-rails', "~> 3.1.0.rc"
gem 'uglifier', "1.0.0"
gem 'compass', '~> 0.12.alpha'
end
gem 'jquery-rails', "1.0.13"
gem 'kaminari'
gem 'haml', "3.1.2"
gem 'devise', '1.4.7' # 1.4.8 breaks devise route helpers inside of our gems
gem 'friendly_id', :git => 'git://github.com/norman/friendly_id.git'
gem 'client_side_validations', "3.1.0"
# gem 'postmark-rails', "0.4.1"
gem 'carmen', "0.2.8"
gem "settingslogic", "2.0.6"
gem "pacecar", "~> 1.4.5"
gem "i18n_routing", :git => "https://github.com/kwi/i18n_routing.git"
gem "delayed_job"
gem "ancestry"
gem "unicorn"
gem "rdiscount"
gem "acts-as-taggable-on"
gem "rails3-jquery-autocomplete"
gem "aws-sdk"
gem "paperclip", :git => "https://github.com/amazonwebservices/paperclip.git", :branch => 'aws-sdk-backend'
gem "twitter_oauth"
# Needed for Heroku; and local development
gem 'pg'
# Home-made gems.
# For easier development, clone the gems to the same dir where the app itself is, uncomment (temporarily!) the required line(s), and run 'bundle'.
gem "backend_core", :git => 'ssh://[email protected]/backend_core'
# gem "backend_core", :path => '..'
gem "content_management", :git => 'ssh://[email protected]/content_management'
# gem "content_management", :path => '..'
gem "franchise_management", :git => 'ssh://[email protected]/franchise_management', :branch => 'geocoder'
# gem "franchise_management", :path => '..'
gem "gmaps4rails"
group :development do
gem 'annotate', :git => 'git://github.com/jeremyolliver/annotate_models.git', :branch => 'rake_compatibility'
gem "progress", "~> 1.1.3"
gem 'translate-rails3', :require => 'translate'
gem 'ya2yaml'
gem 'foreman'
gem 'rb-fsevent'
gem 'guard'
gem 'guard-rspec'
gem 'growl'
gem 'spork', '~> 0.9.0.rc'
gem 'guard-spork'
end
group :production do
gem 'pg'
end
group :test do
gem 'turn', :require => false
end
group :development, :test do
gem 'sqlite3', "1.3.4"
gem 'capybara', "1.0.1"
gem 'launchy'
gem 'database_cleaner', "0.6.7"
gem 'factory_girl_rails', "1.2.0"
gem 'rspec-rails', "2.6.1"
gem 'email_spec'
gem 'web-app-theme', '>= 0.7.0'
gem 'hpricot'
gem 'ruby_parser'
gem "forgery", "~> 0.3.12"
gem "fakeweb", "1.3.0"
gem "timecop"
gem "shoulda"
end
gem 'geocoder'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment