0
votes
1answer
16 views
JRuby app throws exception in Spring
I am trying to run a JRuby app in Spring. I use Eclipse to run it. But it doesn't compile. Does anybody know what's going on here?
Exception in thread "Launcher:/oflaDemo" [INFO] …
0
votes
1answer
12 views
Glassfish can’t find activerecord-jdbc-adapter
I'm trying to deploy simple Rails app on glassfish v3 and get the following error:
org.jruby.rack.RackInitializationException: Could not find RubyGem activerecord-jdbc-adapter (>= 0)
Environment …
0
votes
2answers
7 views
Warbler config.java_classes and log4j.properties
I'm packaging up a rails app with warbler and I want app specific logging. I've added the log4j and commons-loggin jar to the WEB-INF/lib directory, and I want to add log4j.properties to the …
0
votes
1answer
26 views
Compile jruby “Hello world” problem
I have been programming for a while with Ruby and I really enjoy it. Lately I started having the need of compiling some ruby code. For several reasons using Ruby2exe is not an option for me. So I …
1
vote
4answers
51 views
Installing gems from behind a corporate firewall
I suspect that the corporate firewall is preventing gems from getting installed. I have HTTP_PROXY defined and I'm able to view remote gems via the following command:
jruby -S gem list -r
But when …
0
votes
0answers
20 views
(J)Ruby full locales/localisation/cultureInfo support
Hi,
Does (J)Ruby support such things like Calendar in Java or CultureInfo in .NET?
I want to be able to write code in Ruby similar to this:
locale = Locale.new("en-GB")
date1 = …
0
votes
0answers
23 views
JRuby on windows 7
Hi
I had a ruby on rails project on Windows XP. Now I've upgraded to Windows 7 and installed all the necessary applications etc and my project won't run. Neither will new projects. I don't understand …
0
votes
3answers
52 views
possible to load nokogiri in jruby without installing nokogiri-java ?
i need a way to run following nokogiri script
#parser.rb
require 'nokogiri'
def parseit()
//...
end
and call the parseit() while running below main.rb in jruby
#main.rb
require 'parser'
…
1
vote
2answers
52 views
running “ruby something.rb” in each loop
is there a problem with doing? will there be some constraint on resources?
#main.rb
(1..100000).each do |loop|
`ruby dosomething.rb`
end
The reason i am doing this is because main.rb needs to be …
0
votes
1answer
100 views
running nokogiri in Jruby vs. just ruby
I found startling difference in CPU and memory consumption usage. It seems garbage collection is not happening when i run the following nokogiri script
require 'rubygems'
require 'nokogiri'
require …
1
vote
1answer
21 views
warbler config and jruby version
I just installed jruby-1.4.0 to play around with it. I'm noticing however that warbler is packaging this by default with my rails deploy. My production uses jruby-complete-1.3.1 (which I've added to …
2
votes
1answer
45 views
Casting objects in JRuby
Is there a way I can explicitly cast one Java object to another Java class from JRuby?
Sometimes I want to be able to invoke SomeJavaClass#aMethod(MySuperClass) rather than …
0
votes
1answer
27 views
hpricot in netbeans
hi
I am trying to use hpricot in JRuby.
My problem is the following. If I have this code:
#!ruby
require 'hpricot'
require 'open-uri'
# load the RedHanded home page
doc = …
0
votes
1answer
59 views
what do these ruby warnings mean ?
cqq.rb:96 **warning: Statement not reached.**
/root/newpackage/lib.rb:727 **warning: instance variable @object not initialized**
Error: Your application used more memory than the safety cap of 500m.
…
0
votes
2answers
54 views
How to register a JDBC driver using jruby-complete.jar?
I'm trying to write a script that is executed with the jruby-complete.jar like so:
java -cp derby.jar; -Djdbc.drivers=org.apache.derby.jdbc.EmbeddedDriver -jar jruby-complete.jar -S my_script.rb
…
