Skip to content

Commit

Permalink
JRuby compatibility. We require RedCloth 4.2.7 here, since it is the …
Browse files Browse the repository at this point in the history
…latest version of the gem that has 'java' platform support.

jruby-openssl may not be necessary, but I've thrown it in there for a good measure.
  • Loading branch information
BanzaiMan committed Nov 3, 2011
1 parent 2432203 commit 8dd39fd
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 3 deletions.
12 changes: 10 additions & 2 deletions Gemfile
Expand Up @@ -5,7 +5,15 @@ gem 'rails', '3.0.4'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'

gem 'sqlite3-ruby', :require => 'sqlite3'
platforms :ruby do
gem 'sqlite3-ruby', :require => 'sqlite3'
end

platforms :jruby do
gem 'activerecord-jdbcsqlite3-adapter'
gem 'trinidad'
gem 'jruby-openssl'
end

# Use unicorn as the web server
# gem 'unicorn'
Expand All @@ -17,7 +25,7 @@ gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'ruby-debug'

# Bundle the extra gems:
gem 'RedCloth', :require => 'redcloth'
gem 'RedCloth', '4.2.7', :require => 'redcloth'
gem 'ruby-openid', :require => 'openid'
gem 'rack-openid', :require => 'rack/openid'
gem 'aaronh-chronic', :require => 'chronic' # Fixes for 1.9.2
Expand Down
27 changes: 26 additions & 1 deletion Gemfile.lock
Expand Up @@ -2,6 +2,7 @@ GEM
remote: http://rubygems.org/
specs:
RedCloth (4.2.7)
RedCloth (4.2.7-java)
aaronh-chronic (0.3.9)
abstract (1.0.0)
actionmailer (3.0.4)
Expand All @@ -26,11 +27,16 @@ GEM
activesupport (= 3.0.4)
arel (~> 2.0.2)
tzinfo (~> 0.3.23)
activerecord-jdbc-adapter (1.2.0)
activerecord-jdbcsqlite3-adapter (1.2.0)
activerecord-jdbc-adapter (~> 1.2.0)
jdbc-sqlite3 (~> 3.7.2)
activeresource (3.0.4)
activemodel (= 3.0.4)
activesupport (= 3.0.4)
activesupport (3.0.4)
arel (2.0.8)
bouncy-castle-java (1.5.0146.1)
builder (2.1.2)
coderay (0.9.7)
cucumber (0.10.0)
Expand All @@ -51,9 +57,17 @@ GEM
i18n (~> 0.4)
gherkin (2.3.3)
json (~> 1.4.6)
gherkin (2.3.3-java)
json (~> 1.4.6)
hpricot (0.8.3)
hpricot (0.8.3-java)
i18n (0.5.0)
jdbc-sqlite3 (3.7.2)
jruby-openssl (0.7.4)
bouncy-castle-java
jruby-rack (1.0.10)
json (1.4.6)
json (1.4.6-java)
lesstile (1.0.1)
mail (2.2.15)
activesupport (>= 2.3.6)
Expand All @@ -62,6 +76,8 @@ GEM
treetop (~> 1.4.8)
mime-types (1.16)
nokogiri (1.4.4)
nokogiri (1.4.4-java)
weakling (>= 0.0.3)
polyglot (0.3.1)
rack (1.2.1)
rack-mount (0.6.13)
Expand Down Expand Up @@ -106,30 +122,39 @@ GEM
thor (0.14.6)
treetop (1.4.9)
polyglot (>= 0.3.1)
trinidad (1.2.3)
jruby-rack (>= 1.0.9)
trinidad_jars (>= 1.0.1)
trinidad_jars (1.0.1)
tzinfo (0.3.24)
weakling (0.0.4-java)
webrat (0.7.3)
nokogiri (>= 1.2.0)
rack (>= 1.0)
rack-test (>= 0.5.3)
will_paginate (3.0.pre2)

PLATFORMS
java
ruby

DEPENDENCIES
RedCloth
RedCloth (= 4.2.7)
aaronh-chronic
activerecord-jdbcsqlite3-adapter
coderay
cucumber-rails
factory_girl
formtastic
hpricot
jruby-openssl
lesstile
rack-openid
rails (= 3.0.4)
rspec
rspec-rails
ruby-openid
sqlite3-ruby
trinidad
webrat
will_paginate (= 3.0.pre2)

0 comments on commit 8dd39fd

Please sign in to comment.