Skip to content

Instantly share code, notes, and snippets.

@squeedee
Created November 17, 2010 23:00
Show Gist options
  • Save squeedee/704291 to your computer and use it in GitHub Desktop.
Save squeedee/704291 to your computer and use it in GitHub Desktop.
gem 'bundler', '0.9.26'
gem 'rails', '2.3.10'
gem 'pg'
gem 'configatron', :require => "configatron"
gem 'authlogic', '2.1.3'
gem 'hoptoad_notifier'
gem 'will_paginate', :require => "will_paginate"
gem 'libxml-ruby', :require => 'libxml'
gem 'aasm'
gem 'swf_fu'
gem 'metric_fu', '<2.0.0' # metric foo adds location which breaks stuff
gem 'vlad', '2.0.0'
gem 'vlad-git'
gem 'builder'
gem 'haml'
gem 'acts_as_audited'
gem 'rackspace-cloud'
gem 'net-sftp'
gem 'net-scp'
gem 'bluecloth'
gem 'yard'
gem 'yard-rest-plugin', '0.2.2'
#gem 'yard-rest-plugin', :path => "~/yard-rest-plugin"
gem 'formtastic'
gem 'memcache-client', :require => 'memcache'
gem 'postgres-pr'
gem 'bunny' # Used for communication with RabbitMQ
gem 'msgpack' # Used by the notification lib to serialize the msg hash
group :production do
gem 'SyslogLogger'
end
group :development, :integration do
gem 'pgexplain', :require => 'pg_explain'
end
group :test do
gem 'rspec', '~>1.3.1'
gem 'rspec-rails', '~>1.3.3', :require => 'spec/rails'
gem 'factory_girl', :require => "factory_girl"
gem 'remarkable_rails'
gem 'ci_reporter'
end
group :cucumber do
gem 'webrat'
gem 'cucumber'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'ruby-debug-base'
gem 'ruby-debug-ide'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment