0
votes
1answer
22 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
47 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
3answers
48 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'
…
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
2answers
51 views
Error: Your application used more memory than the safety cap of 500m. Specify -J-Xmx####m to increase it (#### = cap size in MB). Specify -w for full OutOfMemoryError stack trace
i was running a jruby something.rb script and suddenly it throws this
Error: Your application used more memory than the safety cap of 500m.
Specify -J-Xmx####m to increase it (#### = cap size in …
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
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
98 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 …
5
votes
6answers
198 views
What’s the difference between Ruby and JRuby?
Can anyone please provide me in layman's terms the difference between developing a JRuby and a Ruby, Rails application?
I use NetBeans as my Ruby on Rails IDE and every-time I create a project is …
2
votes
1answer
44 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 …
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 …
7
votes
8answers
916 views
Groovy vs Scala [vs JRuby vs Closure vs Jython]
I'm planning to broaden my perspectives in JVM platform, and I've got a dilemma: what should I learn first? Could you please explain, what are the advantages of Groovy, Scala and other languages for …
0
votes
2answers
53 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
…
1
vote
4answers
75 views
How do I unmarshal a ruby object in java?
I have a an object that I'd like to grab the contents of in java.
The only problem is that is is currently in ruby.
irb(main):050:0> blah
=> …
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.
…
