Tagged Questions

55
votes
3answers
11k views

JRuby on Rails vs. Ruby on Rails, what's difference?

I'm looking to try out JRuby and JRuby on Rails. I'm having trouble finding information on what's difference between JRuby on Rails and Ruby on Rails. What's the differences I need to look out for?
10
votes
4answers
644 views

jruby on rails scheduling options

I'm using JRuby 1.5.6 on Rails to build myself an application that will periodically go away and retrieve any RSS podcasts that I have subscribed too. I've chosen JRuby primarily because I'm familiar ...
5
votes
1answer
101 views

Getting access to Object#try

I am trying to obtain access to Object#try in ruby. I thought that just including activesupport would do the trick, but it doesn't. irb(main):001:0> require 'rubygems' => true ...
4
votes
4answers
1k views

Track down PermGen problem with JRuby on Rails in Tomcat

We're running a small web application written JRuby on Rails running under Tomcat. We're using a Spring back-end that's shared with another production web application. Unfortunately, we keep running ...
4
votes
2answers
1k views

JRuby on Rails: Adding a folder to the classpath

I'm trying to add an entire folder to the JRuby 1.5 classpath for my Rails app. The JRuby Wiki suggests the following: "... add the config directory to the JRuby classpath in config/environment.rb:" ...
3
votes
1answer
319 views

How to deploy JRuby Rails 3.1.x on Heroku

I want to be able to deply a jruby rails 3.1 app to Heroku. Heroku now suports Java: http://blog.heroku.com/archives/2011/08/25/java/ Supposedly, it should be possible to deploy a JRuby rails ...
3
votes
2answers
385 views

Struts vs. [j]Ruby on Rails

I've spent the last 9 months using Ruby on Rails exclusively. I've been asked to join project and they are currently using Struts with Tomcat. I've done Java in the past and vowed never to go back ...
3
votes
5answers
610 views

Is JRuby a viable alternative to the MRI for Rails development?

I am a beginner-verging-on-intermediate rails developer that is working hard to improve my skills. I am a little confused about the state of JRuby, and whether it is a viable alternative to switch ...
3
votes
2answers
822 views

Logging inside threads in a Rails application

I've got a Rails application in which a small number of actions require significant computation time. Rather than going through the complexity of managing these actions as background tasks, I've found ...
3
votes
2answers
199 views

If I have jRuby on Rails installed can I use only Ruby?

What I mean by this is if I install jRuby on Rails, can I use only the ruby language to build my application? I wanted to install my rails application with jRuby in case I wanted to use Java in the ...
2
votes
3answers
139 views

Combining a clojure app with a Ruby on Rails app

I have a Clojure back-end that I want to put a Rails front-end to. How should I connect them, and how specifically do I do it? Off the top of my head, there are two ways: run Jruby on rails, in the ...
2
votes
1answer
302 views

How to run Rails3 with JRuby in 1.9 mode on Windows XP?

I know that I can run JRuby with 1.9 compatibility with the --1.9 flag. No problems here. However, I cannot get Rails3 to run with JRuby 1.6.2 in 1.9 mode on Windows XP. Am I missing something? Here ...
2
votes
3answers
298 views

sunspot with jruby

Hi can sunspot be used with jruby, also here is my app details jruby-1.6.1 rails 3.0.7 when i install all the gems and run rake sunspot:solr:start it gives me the following error Gem::LoadError: ...
2
votes
1answer
313 views

Where to put the sqlite3-database when deploying a JRuby-On-Rails App as a war?

Background: I want to deploy a small JRuby-On-Rails-Application using warblers executable war, so I can just drop the .war-file and everyone can run it with java -jar app.war. The application uses ...
2
votes
7answers
2k views

jRuby on Rails vs Grails

I'm looking to develop a greenfield web application which will reuse a lot of Java components. To me, the obvious options for this are Grails or jRuby on Rails, but I'm having trouble finding ...
2
votes
1answer
393 views

JRuby on Rails: Using custom Java classes in your Rails app

I just started with JRuby on Rails and absolutely love it. I know how to use current classes within the Java API in my Rails app, but if I wanted to create a new custom class written in purely Java ...
2
votes
2answers
420 views

Compile a jruby on rails application to a jar?

Is there a quick way to pack a jruby on rails application into a jar? Is there an ec2 on rails like virtual appliance for jruby on rails apps?
2
votes
5answers
496 views

How reliable is JRuby?

I'm interested in promoting JRuby in our office as the platform hosting Rails applications. But how reliable is it? Is its performance better than MRI 1.8.7? JRuby 1.5 states that it is 100% ...
2
votes
1answer
289 views

JRuby: Rake fails with Gem::Version error

I get the following error on any call to rake. I am working on a Rails 3 running on JRuby (1.5.1) installed with RVM. I don't think this was always the case, but I'm not sure how to track it down. ...
2
votes
2answers
544 views

Cucumber-rails on jruby installs gem into my apps root directory with bundler

Just installed cucumber 0.7.2 and cucumber-rails 0.3.1 with jruby-1.4.0 on OSX. When I run a bundle install, it places a cucumber-rails directory in my main app with all of the gem code/dependencies. ...
2
votes
1answer
303 views

java.net is moving to Jruby?

There is a post on http://kenai.com/ from Oracle's Ted Farrell which has an interesting statement: We are in the process of migrating java.net to the kenai technology. Does this mean java.net ...
2
votes
0answers
329 views

jruby rails memcached unmarshalling error with java classes

I have a rails app that is communicating with some java services over JMS. I'm caching a few of these objects in memcached on the rails side like so: @my_objects = MEMCACHE["some_key"] || ...
2
votes
2answers
163 views

How can I start JRuby on Rails from Java?

I need to start a copy of a Rails app from within Java. I would favor a lightweight HTTP server, as our installations will have a very small userbase (1-10, 10 being a huge installation). My design ...
1
vote
0answers
21 views

Multi-part form parameters not getting to controller when deployed on JBOSS AS 7.1

I'm trying to deploy a Rails 3.2 app on JBOSS AS 7.1, using JRuby 1.6.6. I think this is almost certainly a JBoss issue. The app works perfectly under Tomcat and under WebBrick, but not JBoss. When ...
1
vote
0answers
19 views

How to use breakpoints in eclipse with JRuby on Rails

I have been searching on how to use breakpoints in Eclipse when running a JRuby on Rails application. I installed ruby-debug and ruby-debug-ide, but now I don't know how to proceed. If I put ...
1
vote
0answers
27 views

Profiling a JRUBY rails application outputs <unknown> elements

Environment: Linux Mint 32 bit, JRuby-1.6.5 [ i386 ], Rails 3.1.3. I am trying to profile my rails application deployed on JRuby 1.6.5 on WEBrick (in development mode). My JRUBY_OPTS: ...
1
vote
0answers
43 views

Cucumber hangs after all scenarios passed

I have jRuby on Rails application with some cucumber tests. Problem is that cucumber features hangs after executing all steps until I press ctrl+c. Interesting that it only happens if all of the ...
1
vote
0answers
19 views

jruby makes rescue Exception nil with rescue Java::System.out

The error.class output changes on the 2nd execution of this code in Jruby script/console. begin raise "something went wrong" rescue Java::System.out => java_error puts java_error.inspect rescue ...
1
vote
2answers
87 views

Rails app won't send mail (via sendmail) under JRuby

After switching my Rails 2.3 app from MRI Ruby 1.8.7 to JRuby 1.6.5, the app is no longer able to send mail. I'm using ActionMailer like this: class MessageMailer < ActionMailer::Base def ...
1
vote
3answers
41 views

Is there a jruby-on-rails idiom for detecting if you're running in Tomcat?

Checking defined?(JRUBY_VERSION) appears to be the most idiomatic way of determining whether you're running in jruby (c.f. How can I tell if I'm running from JRuby vs. Ruby?, various FOSS jruby ...
1
vote
3answers
312 views

How do I use JRUBY_OPTS with RVM?

It seems that the idiomatic way to provide flags to JRuby in an RVM-based Rails project is to set the environmental variable JRUBY_OPTS or PROJECT_JRUBY_OPTS, the latter perhaps being done ...
1
vote
1answer
138 views

Context not being set properly with warbler and tomcat

I'm trying to deploy a Rails app to Tomcat with a war file generated by Warbler. The war file deploys to /myproject-rails-gui without any problems but, when I try to access a page on the app, I'm ...
1
vote
2answers
148 views

JRuby on Rails log rotation failure

We have a JRuby on Rails 2 application deployed on Tomcat, using the default Rails logger. Some time after we crossed the DST boundary, we found the application was dead with the following error ...
1
vote
2answers
89 views

JRuby on rails encoding error

Yesterday i tried to switch from MRI to JRuby and I believe that i got all the gems right. I am using Mongoid and not ActiveRecord so no switching of gem necessary there i think. The error i get is: ...
1
vote
1answer
67 views

Jruby on Rails Development Box on Mac Mini (Snow Leopard or Lion OS)

This weekend, I'm planning to attempt to configure my new Mac Mini as a Jruby development box. I have been doing some research on the subject and there seem to be a variety of ways to go. I was ...
1
vote
1answer
75 views

Listing files from the network in Rails

I'd like to be able to list files from a distant directory on the network with Rails (for instance, listing every pictures in a folder to move them and do some processing on them). So I tried to ...
1
vote
3answers
355 views

JRuby 1.6.3 and Rails 3.1rc5 and activerecord-3.1.0.rc5 and destroy_all

I am able to create able to run my migrations from JRuby 1.6.3 and Rails 3.1rc5 and in a console session create a simple Role object like this: jruby-1.6.3 :001 > role = Role.new(:name => ...
1
vote
0answers
112 views

jasper report in jruby

i wont to create report in jruby using jasper report i able to access java lib in jruby but i have problem with include jar file for jasper report how to access jar file class in jruby ? how to make ...
1
vote
1answer
132 views

JRuby with Tomcat

I have been working with Ruby 1.9.2 with rails 3.0.6, and i am new to JRuby. I want to know whether Apache Tomcat ( web server ) can serve multiple requests of single Jruby WAR file ? Any website that ...
1
vote
3answers
124 views

Windows commands in ruby

How do I run a Windows command in an Ruby app? I am trying to run something like: output = `cd #{RAILS_ROOT}/lib && java HelloWorld #{param1} #{param2}` I print the result of the line ...
1
vote
1answer
617 views

Running Rake Tasks under Tomcat and JRuby

We've got our Rails (2.2.2) application running on a Tomcat7 server using warbler (1.2.1) and JRuby (1.5.6), but since we want to simplify deployment to multiple machines, we want to run the rake ...
1
vote
1answer
179 views

Make JRuby inherit Java proxy settings

I would like to make HTTP requests from Rails code running on top of JRuby. How can I make it to re-use http.proxyHost, http.proxyPort and http.nonProxyHosts settings, given to JVM running it ?
1
vote
1answer
124 views

deploy jruby or grails on test server without compilation

I'm investigating the viability of using jvm languages for web development. I'm evaluating jruby on rails and grails. So far it looks like the only way to deploy these is to make a war file and ...
1
vote
1answer
168 views

how/where to set --fast mode for jruby when using it within jruby/rack inside tomcat?

how/where to set --fast mode for jruby when using it within jruby/rack inside tomcat? This --fast mode is explained in this page jruby performance tuning
1
vote
1answer
154 views

jRuby/Glassfish won't recognize installed gems (Rails Application)

When I try to launch my Rails application using jRuby, it says I need to install rails 2.3.8 which is already installed. These are the commands I used and their errors: Attempt to Launch ...
1
vote
1answer
156 views

using aws sdk for java in Jruby

I have an app which uses the amazon web services.The app is installed with jruby on rails.I have to use java aws sdk for calling amazon web services. Can u help me as in how to include aws sdk in my ...
1
vote
1answer
294 views

memory requirement for jruby +rails+mongrel?

hi I am planning to run jruby (1.5.3 latest) on mongrel but how much memory will it require on x64 server for a simple web site ? and how many instances will be required ? 10000 page views per day ...
1
vote
0answers
298 views

Ruby on Rails (JRuby) errors custom error pages (500) not being properly captured

Wondering if anyone has come across this issue before, I am using JRuby v 1.5.x and Rails 2.5.x on a Tomcat Server and I am having difficulty capturing an error and redirecting to a 500.html page. ...
1
vote
1answer
86 views

Tomcat possible way that don't load TOMCAT JAR from JAXB before my Web Application built in JRUBY

I get this error on my application when i try to run in "Tomcat", in WEBrick works fine: SEVERE: Application Error org.jruby.rack.RackInitializationException: wrong # of arguments(0 for 1) ...
1
vote
1answer
329 views

jRuby Glassfish v3 dispatcher error

i have ubuntu 8.10, running glassfish v3 (not prelude). first deployment of any jruby on a glassfish v3 SERVER (not the gem). i have deployed the app using the 'choose folder' method, rather than ...

1 2 3