Skip to content

Instantly share code, notes, and snippets.

@rgould
Created December 14, 2011 18:54
Show Gist options
  • Save rgould/106cc4580686b714c32c to your computer and use it in GitHub Desktop.
Save rgould/106cc4580686b714c32c to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'ancestry'
gem 'active_link_to'
gem 'awesome_print', :require => 'ap'
gem 'aws-s3', :require => 'aws/s3'
gem 'compass'
gem 'geokit'
gem 'haml'
gem 'hoptoad_notifier'
gem 'meta_search'
gem 'meta_where'
gem 'mysql'
gem 'nested_has_many_through'
gem 'paperclip'
gem 'pdfkit', :git => 'git://github.com/GaggleUp/PDFKit' # TODO what's different in this version from the official release?
gem 'pry'
gem 'pry-git'
gem 'rack-ssl', :require => 'rack/ssl'
gem 'rails', '>= 3.0.10'
gem 'rdiscount'
gem 'sanitize'
gem 'whenever', :require => false
gem 'will_paginate'
gem 'event-calendar', :require => 'event_calendar'
gem 'formtastic'
gem 'has_translations'
gem "authlogic", "~> 3.0.3"
gem 'oauth'
gem "oauth2", "~> 0.4.1" # namespace changes in 0.5+
gem 'acts-as-taggable-on', '~>2.1.0'
gem 'ruport', :git => 'https://github.com/kirkonrails/ruport.git' # patched bug for ruby 1.92
gem 'acts_as_reportable'
gem "recaptcha", :require => "recaptcha/rails"
group :production, :staging, :ct do
gem 'newrelic_rpm' # Fixes DEPRECATION WARNING about RAILS_DEFAULT_LOGGER when running tests
end
group :development, :test do
gem "parallel_tests"
gem 'metric_fu', '>= 2.1.1'
gem 'simplecov', :require => false
gem 'chronic', '~> 0.3.0' # metric_fu requires chronic 0.3
gem 'syntax'
gem "escape_utils"
gem 'ZenTest'
gem 'autotest'
gem 'autotest-fsevent' unless ENV['USER'] == 'vagrant' # comments?
gem 'autotest-growl' unless ENV['USER'] == 'vagrant' # both gems are osx only
gem 'autotest-rails'
gem 'capybara'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'email_spec'
gem 'faker'
gem 'hirb'
gem 'launchy'
gem 'machinist'
gem 'mailcatcher', :require => false
gem 'mocha', :require => false # require it in test_helper.rb to work around ordering bug
gem 'nyan-cat-formatter', :git => 'https://github.com/mattsears/nyan-cat-formatter.git'
gem 'pickle'
gem 'powder'
gem 'rspec-rails'
gem 'ruby-debug19', :require => 'ruby-debug'
gem 'timecop'
gem 'wirble'
gem 'railroady'
# speedy test support
gem 'spork', '~> 0.9.0.rc'
gem 'rb-fsevent'
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-cucumber'
gem 'growl'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment