Skip to content

Instantly share code, notes, and snippets.

@akitaonrails
Created January 8, 2011 19:55
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save akitaonrails/771101 to your computer and use it in GitHub Desktop.
Save akitaonrails/771101 to your computer and use it in GitHub Desktop.
AkitaOnRails.com Gemfile
source 'http://rubygems.org'
gem 'rails', '3.0.3'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
platforms :jruby do
gem 'activerecord-jdbc-adapter', :require => false
gem 'activerecord-jdbcmysql-adapter', :require => false
gem 'jdbc-mysql'
gem 'jruby-openssl'
gem 'jruby-rack'
gem 'warbler'
end
platforms :ruby do
gem 'mysql2'
end
gem 'aaronh-chronic', :require => 'chronic' # Fixes for 1.9.2
gem 'RedCloth', '~> 4.2', :require => 'redcloth'
gem 'ruby-openid', '~> 2.1.0', :require => 'openid'
gem 'coderay', '~> 0.9'
gem 'lesstile', '~> 1.0'
gem 'will_paginate', "~> 3.0.pre2"
gem 'paperclip', '~> 2.3'
gem 'treetop', '~> 1.4'
gem 'polyglot', '~> 0.3'
gem 'rack-cache', :require => 'rack/cache'
gem 'rack-openid', :require => 'rack/openid'
gem 'newrelic_rpm', '~> 2.13'
gem 'term-ansicolor', '~> 1.0'
gem 'memcache-client'
gem 'disqus'
gem 'acts-as-taggable-on'
gem 'formtastic', '~> 1.1.0'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
group :test, :development, :cucumber do
gem 'hpricot'
gem 'webrat', "~> 0.7.2"
gem 'database_cleaner'
gem 'cucumber-rails'
gem 'cucumber'
gem 'rspec-rails'
gem 'rspec'
gem 'factory_girl'
gem 'ZenTest', :require => false
gem 'launchy' # So you can do Then show me the page
platforms :jruby do
gem 'jdbc-sqlite3', :require => false
end
platforms :ruby do
gem 'sqlite3-ruby', :require => 'sqlite3'
end
platforms :mri_18 do
gem "ruby-debug"
end
platforms :mri_19 do
gem "ruby-debug19", :require => 'ruby-debug'
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment