Closed TheReincarnator closed 11 years ago
This is my Gemfile:
source 'https://rubygems.org'
gem 'rails'
gem 'jquery-rails'
gem 'couchmodel', :require => 'couch_model'
gem 'haml'
gem 'simple-navigation'
gem 'maruku'
gem 'will_paginate'
gem 'httparty
gem 'newrelic_rpm'
if RUBY_PLATFORM =~ /java/
gem 'fastercsv'
gem 'json-jruby'
gem 'jruby-openssl', :require => false
gem 'jruby-jars'
gem 'activerecord-jdbc-adapter'
gem 'activerecord-jdbcsqlite3-adapter'
gem 'activerecord-jdbcmysql-adapter'
gem 'jdbc-mysql'
gem 'rubyzip', :require => 'zip/zipfilesystem'
else
gem 'sqlite3-ruby', :require => 'sqlite3'
gem 'mysql2'
end
group :development, :test do
gem 'rspec-rails'
gem 'capybara'
gem 'capybara-webkit', :git => 'git://github.com/thoughtbot/capybara-webkit.git'
gem 'launchy'
gem 'spork'
gem 'warbler'
gem 'term-ansicolor'
gem 'mongrel', '>= 1.2.0.pre2', :platforms => 'mri'
gem 'pry'
gem 'ruby-debug', :platforms => ['ruby_18', 'jruby']
if RUBY_PLATFORM =~ /java/
gem 'ruby-debug19', :require => 'ruby-debug', :platforms => 'ruby_19'
else
gem 'debugger'
end
end
group :assets do
gem 'sass-rails'
gem 'yui-compressor'
gem 'uglifier', :require => 'uglifier'
end
I am using JRuby 1.7.3, Rails 3.2.
Looks like JRuby 2.0 compatibility is missing the name change in Net::HTTP
.
see #193 for more information.
Temporary fix in #204.
I posted this as an issue in JRuby, adding pressure to add the 2.0 stdlib. We'll have to wait to see when that gets added in. Maybe in 1.7.4 :pray:
Merged #204
The commit a0a07c508b476df4454c6b2caaabe2a793c2b864 breaks JRuby 2.0 with "compat.version=2.0" with HTTParty HEAD, at least in my situation, with the following error: