Created
September 9, 2011 10:50
-
-
Save dagda1/1205939 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' | |
source 'http://gems.engineyard.com' | |
gem 'rails', '~> 3.1.0.rc8' | |
gem 'haml' | |
gem 'authlogic', :git => 'https://github.com/AndreasWurm/authlogic.git' | |
gem 'grid-coordinates' | |
gem 'nokogiri' | |
gem 'bundler' | |
gem 'resque' | |
gem 'resque-meta' | |
gem 'jquery-rails' | |
gem 'rake'#, '~> 0.8.7' | |
gem 'eventmachine' | |
gem 'em-websocket' | |
gem 'json' | |
gem 'coffee-script' | |
# Gems used only for assets and not required | |
# in production environments by default. | |
group :assets do | |
gem 'sass-rails', "~> 3.1.0.rc" | |
gem 'coffee-rails', "~> 3.1.0.rc" | |
gem 'uglifier' | |
gem 'compass', git: 'https://github.com/chriseppstein/compass.git', branch: 'rails31' | |
gem 'fancy-buttons' | |
end | |
platforms :jruby do | |
gem 'activerecord-jdbc-adapter', :git => "https://github.com/nicksieger/activerecord-jdbc-adapter.git", :branch => 'master' | |
gem 'activerecord-jdbcsqlite3-adapter' | |
gem 'jruby-openssl' | |
gem 'jdbc-mysql' | |
gem 'jruby-rack' | |
gem 'warbler' | |
#gem 'glassfish', '1.0.3.dev' | |
end | |
group :test, :development do | |
platforms :jruby do | |
gem 'jdbc-sqlite3', :require => false | |
gem 'fastercsv' | |
gem 'ruby-debug' | |
end | |
platforms :ruby do | |
gem 'sqlite3-ruby', :require => 'sqlite3' | |
end | |
gem 'mocha' | |
gem 'factory_girl' | |
gem 'fakeweb' | |
gem 'shoulda', :require => 'shoulda' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment