2

有没有人设法让 Rails 3.2 使用 JRuby 在 Solaris-10 上工作?

我们似乎陷入了一个令人讨厌的依赖漩涡。Rails 3.2 需要 JRuby 1.6.6 或更高版本,根据:Using JRuby with Rails 3.2

但是 JRuby 1.6.5 是最后一个可以在 Solaris 上成功安装 gems 的版本:http: //jira.codehaus.org/browse/JRUBY-6494

有没有可能有补丁或者我们没有想到的东西?

4

1 回答 1

1

我们有一个在 Solaris 上运行的 Rails 3.2.2 应用程序。我们使用的是 JRuby 1.6.5.1 和最新的莺,但我相信我们不得不将 jruby-rack 降级到 1.1.5。

不工作的是资产编译,因为我们还没有找到一个工作的 JavaScript 运行时。Node.js 不支持 Solaris Sparc,并且 therubyracer 存在编译问题,我们没有花太多时间尝试解决。因此,我们目前在本地开发工作站 (Windows) 上预编译资产。我们并没有真正使用资产管道(而且我不相信将其设置为 Rails 默认值是个好主意),因此我们可以禁用它,以便我们可以在 Solaris 上运行 CI 构建。

这是 gemfile.lock:

GEM
  remote: https://rubygems.org/
  specs:
    actionmailer (3.2.2)
      actionpack (= 3.2.2)
      mail (~> 2.4.0)
    actionpack (3.2.2)
      activemodel (= 3.2.2)
      activesupport (= 3.2.2)
      builder (~> 3.0.0)
      erubis (~> 2.7.0)
      journey (~> 1.0.1)
      rack (~> 1.4.0)
      rack-cache (~> 1.1)
      rack-test (~> 0.6.1)
      sprockets (~> 2.1.2)
    activemodel (3.2.2)
      activesupport (= 3.2.2)
      builder (~> 3.0.0)
    activerecord (3.2.2)
      activemodel (= 3.2.2)
      activesupport (= 3.2.2)
      arel (~> 3.0.2)
      tzinfo (~> 0.3.29)
    activerecord-jdbc-adapter (1.2.2)
    activerecord-jdbcsqlite3-adapter (1.2.2)
      activerecord-jdbc-adapter (~> 1.2.2)
      jdbc-sqlite3 (~> 3.7.2)
    activerecord-oracle_enhanced-adapter (1.4.1)
    activeresource (3.2.2)
      activemodel (= 3.2.2)
      activesupport (= 3.2.2)
    activesupport (3.2.2)
      i18n (~> 0.6)
      multi_json (~> 1.0)
    arel (3.0.2)
    bouncy-castle-java (1.5.0146.1)
    builder (3.0.0)
    coffee-rails (3.2.2)
      coffee-script (>= 2.2.0)
      railties (~> 3.2.0)
    coffee-script (2.2.0)
      coffee-script-source
      execjs
    coffee-script-source (1.2.0)
    erubis (2.7.0)
    execjs (1.3.0)
      multi_json (~> 1.0)
    hike (1.2.1)
    i18n (0.6.0)
    jdbc-sqlite3 (3.7.2)
    journey (1.0.3)
    jquery-rails (2.0.1)
      railties (>= 3.2.0, < 5.0)
      thor (~> 0.14)
    jruby-openssl (0.7.6.1)
      bouncy-castle-java (>= 1.5.0146.1)
    json (1.6.5)
    json (1.6.5-java)
    mail (2.4.3)
      i18n (>= 0.4.0)
      mime-types (~> 1.16)
      treetop (~> 1.4.8)
    mime-types (1.17.2)
    multi_json (1.1.0)
    polyglot (0.3.3)
    rack (1.4.1)
    rack-cache (1.2)
      rack (>= 0.4)
    rack-ssl (1.3.2)
      rack
    rack-test (0.6.1)
      rack (>= 1.0)
    rails (3.2.2)
      actionmailer (= 3.2.2)
      actionpack (= 3.2.2)
      activerecord (= 3.2.2)
      activeresource (= 3.2.2)
      activesupport (= 3.2.2)
      bundler (~> 1.0)
      railties (= 3.2.2)
    railties (3.2.2)
      actionpack (= 3.2.2)
      activesupport (= 3.2.2)
      rack-ssl (~> 1.3.2)
      rake (>= 0.8.7)
      rdoc (~> 3.4)
      thor (~> 0.14.6)
    rake (0.9.2.2)
    rdoc (3.12)
      json (~> 1.4)
    sass (3.1.15)
    sass-rails (3.2.4)
      railties (~> 3.2.0)
      sass (>= 3.1.10)
      tilt (~> 1.3)
    sprockets (2.1.2)
      hike (~> 1.2)
      rack (~> 1.0)
      tilt (~> 1.1, != 1.3.0)
    therubyrhino (1.73.1)
    thor (0.14.6)
    tilt (1.3.3)
    treetop (1.4.10)
      polyglot
      polyglot (>= 0.3.1)
    tzinfo (0.3.32)
    uglifier (1.2.3)
      execjs (>= 0.3.0)
      multi_json (>= 1.0.2)

我希望 JRuby 团队会花一些时间让 JRuby 1.7 在 Solaris 上运行。否则我们将不得不加快向 linux 的迁移……

于 2012-06-05T14:11:38.093 回答