Created
April 18, 2012 13:34
-
-
Save charliedavi/2413586 to your computer and use it in GitHub Desktop.
This file contains 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' | |
gem 'rails', '3.1.0' | |
gem 'rake' | |
# Asset template engines | |
gem 'sass' | |
gem 'coffee-script' | |
gem 'uglifier' | |
gem 'jquery-rails' | |
gem 'rails-backbone' | |
gem 'java-kdtree', '1.0.3', :git=>"[email protected]:charliedavi/java-kdtree.git" | |
gem 's3' | |
gem 'capistrano' | |
#start resque with trinidad | |
# Embedded JS interpreter | |
platform :ruby do | |
gem 'therubyracer' | |
end | |
platform :jruby do | |
gem 'therubyrhino' | |
end | |
# For the IGeoliser library - should maybe go in the .gemspec | |
gem 'geo-distance' | |
gem 'ruby-units' | |
gem 'nested_set' | |
gem 'GeoRuby' | |
group :development do | |
#gem 'ruby-debug19', :require => 'ruby-debug' | |
#gem 'perftools.rb' | |
#gem 'proj4rb' | |
gem 'rest-client' | |
platforms :ruby do | |
gem 'unicorn' | |
end | |
end | |
group :test do | |
gem 'mocha' | |
end | |
group :test, :development do | |
gem "rspec-rails", "~> 2.4" | |
platforms :jruby do | |
gem 'jdbc-sqlite3' | |
gem "activerecord-jdbcsqlite3-adapter" | |
end | |
platforms :ruby do | |
gem 'sqlite3' | |
end | |
end | |
platforms :jruby do | |
gem 'activerecord-jdbc-adapter' | |
gem 'jruby-rack', :require => nil | |
gem 'jdbc-sqlite3' | |
gem "activerecord-jdbcsqlite3-adapter" | |
# This is needed by now to let tests work on JRuby | |
# TODO: When the JRuby guys merge jruby-openssl in | |
# jruby this will be removed | |
gem 'jruby-openssl' | |
# For Ehcache | |
gem 'jruby-ehcache-rails3' | |
end | |
group :production do | |
platforms :ruby do | |
gem 'sqlite3' | |
end | |
platforms :jruby do | |
gem 'activerecord-jdbcmysql-adapter' | |
gem 'torquebox' | |
gem "torquebox-backstage" | |
gem 'torquebox-capistrano-support' | |
#gem 'trinidad_resque_extension' | |
end | |
end | |
# Added as low as possible as it allows the gems above to be intrumented | |
gem 'newrelic_rpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment