JRuby is an open-source Java implementation of the Ruby programming language. It is Ruby for the JVM. Using idiomatic Ruby syntax, JRuby can consume Java classes and libraries with ease.
0
votes
0answers
9 views
How to pass Java InputStream to JRuby io that supports pos/seek
I need to call a (j)ruby script from java runtime, and I want to pass an input stream as a parameter.
On the ruby side, I'm using to_io to convert input stream
io = my_stream.to_io
I'm getting ...
2
votes
0answers
22 views
Jruby : install redcarpet throw error
I want to install redcarpet gem in JRuby
I did
jruby -S gem install redcarpet
Fetching: redcarpet-2.3.0.gem (100%)
Building native extensions. This could take a while...
ERROR: Error installing ...
1
vote
1answer
17 views
JRuby is Ruby implemented on the JVM - what does this mean?
This is a very beginner-ish question.
JRuby is Ruby implemented on the JVM. Does this mean that the process for creation was just creating the Ruby language from scratch, implemented in Java methods ...
0
votes
0answers
33 views
No such file to load — sass-rails
I'm trying to deploy a rails application to jruby/tomcat.
The app already runs in jruby with webrick in dev environment.
When deploying to tomcat through warbler I get an error
"no such file to load ...
2
votes
3answers
46 views
emails not sending in ruby on rails
I did the same thing as in this link http://www.tutorialspoint.com/ruby-on-rails/rails-send-email.htm. it is showing mail sent in output window of net-beans with the message but it is not actually ...
0
votes
0answers
25 views
JRuby - how to get WIN32OLE LastError (or Err)
A user-share (\server\username) is automatically created on a windows server for each user-folder created under a special server (\server\path\username). The share is accessible only by the user ...
0
votes
0answers
24 views
Malformed version number string java (ArgumentError)
I am getting this problem when starting the server in IntelliJ.
I am using Jruby version 1.3.1 and rails 2.3.2
(Note: I can't upgrade this versions now)
D:\builders\luis\jruby-1.3.1\bin\jruby.exe -e ...
0
votes
0answers
17 views
how to set profiles using parallel_tests gem
How do I specify a cucumber profile when using the parallel tests gem?
If I were to launch cucumber from the command line (using Jruby) I would do
Jruby -S cucumber -p profile_name
and using rake ...
0
votes
0answers
18 views
Getting Selenium::WebDriver::Android::Bridge.new() Errno::ECONNREFUSED Exception: Connection refused - Connection refuse
I am writing scenarios for android in jruby with cucumber-selenium.
But I am getting error:
Selenium::WebDriver::Android::Bridge.new()
Errno::ECONNREFUSED Exception: Connection refused - Connection ...
2
votes
1answer
53 views
Everything is 2 days off rails 3.2.13
Okay this has got to be the oddest rails related issue ever. It was brought to my attention about a month ago when some of our Employees started to notice that everytime the enter a value in a date ...
0
votes
3answers
40 views
Render JSON in Rails
I want to see the following code in json format. When I do so I get a blank page with no content. In the rubymine debugger I have the correct information in json format.
include Java
require ...
0
votes
0answers
33 views
+50
Passing Tomcat servlet context parameters to a warbler-packaged Rails app
I've got a simple Rails app packaged into a ROOT.war with warbler, that I'm trying to deploy to tomcat7 on wheezy. The app basically works - I just drop the ROOT.war into /var/lib/tomcat7/webapps/, ...
1
vote
0answers
16 views
The best way to insert large amount of messages into TorqueBox message queue
what's the fastest way to push millions of messages into HornetQ? I have these both approaches:
1.) My current code, reuses one session for all messages, ca. 2.200 messages per second
time = ...
0
votes
0answers
5 views
JRuby Embed Should I instantiate one ScriptingContainer per request?
I'm embedding JRuby in a java library on a web application using concurrent mode (Single Ruby Runtime), should instantiate one ScriptingContainer per request, or reuse the same instance of the ...
0
votes
0answers
28 views
how do I run jruby in jenkins on ubuntu
I'm having an issue with executing a bash script from within jenkins. I have the shell command checked and my inputs are as follows:
rvm use jruby-1.7.4
export JRUBY_OPTS=--1.8
jruby -S cucumber
...
0
votes
0answers
24 views
jenkins rvm plugin issues
I have a Jenkins job setup on ubuntu. I tried using rvm use in the bash shell but it says i needed to envoke /bin/bash --login in order to use the shell script. So i tried adding that to the top of ...
1
vote
1answer
38 views
How to test and document JRuby compatibility, for a gem with some C exts
I have created a simple published gem, with source managed on github, and it runs builds on Travis CI when I commit.
Recently I added a dependency which happens to use a C extension. My builds on ...
0
votes
0answers
28 views
How to render additional partial in application layout?
I have some html content in my application.html.erb file and the <%= yield %> field in which current controller view is rendered. I want to add additional partial to this - I want to add the form, ...
0
votes
2answers
53 views
Combining Neo4j with PostgreSQL under Rails application
We're building a Rails 3 app that supposed to use both Neo4j database and standard postgresql.
What is the best way of combining those to work together? We need them both to be ORM compatible and ...
0
votes
0answers
25 views
JRuby Installed with rbenv does not add my gem lib directories to the load path
I installed JRuby 1.7.4 using Rbenv. I've installed several gems using gem install GEMNAME from a shell where jruby-1.7.4 was set as the active ruby-- I confirmed after installation that the gems are ...
0
votes
1answer
61 views
JRuby / Warbler / GlassFish - (NameError) uninitialized constant ApplicationController::SessionsHelper
Really Short Story:
I'm incredibly frustrated by this issue
Short Story:
JRuby-1.7.2 building to a .war using Warbler (1.3.8) deploying to a glassfish v3 server. I can build on my machine and ...
1
vote
2answers
33 views
why can't I run em-websocket-server on JRuby?
I'm running JRuby-1.7.3 through rvm. I've successfully installed the em-websocket-server gem. I can verify it's in my current gemset by running $ gem list.
My code is this:
require 'rubygems'
...
1
vote
0answers
29 views
jruby jar class loading errors: NoClassDefFoundError
I have a program that consists of a java half and a ruby half. When I compile the java half to a jar, everything works. when I just have the raw .class files, then ruby can refer to ...
0
votes
0answers
18 views
unsupported major.minor version 51.0 on Jar built by Warbler
Last night for a separate project I installed the latest Java SDK.
Now, the jar I build using Warbler says it is using the wrong version. I have built this jar many times before and not had this ...
0
votes
0answers
25 views
Undefined method `demodulize' for nil:NilClass in AuthLogic application
I was following a webtutorial on how to make an online app using jruby with a login system. I am new to jruby and I am sorry if I have left out any important information.
I have a username model and ...
-4
votes
0answers
41 views
automation using Watir,jruby,sikuli [closed]
Can any one tell me how to begin with silverlight screen automation using sikuli jruby and watir. and how efficient it is to automate using these tools. can it give more than 80% of test coverage of ...
1
vote
1answer
18 views
__persistence__ NoMethodError
I'm mocking a java interface in rspec
clock = ClockInterface.new
clock.should_receive(:currentTime)
When I run rspec everything works fine but I see a warning which directs me to the following
...
0
votes
1answer
36 views
Update SASS in Netbeans JRuby?
I am using the SCSS-Editor for Netbeans on Windows so that I can edit and compile SCSS files in my projects. SCSS-Editor uses a bundled install of SASS/JRuby, although there is an option to use an ...
1
vote
1answer
25 views
How to call “send” on java object instead of Ruby's builtin “send”?
Ruby objects all have a "send" method, however, I'm trying to use a Java library (netty-tools) which has a 'send' method on one of its interfaces.
The usage should be java_obj.send 'some data' but ...
1
vote
1answer
25 views
How to increase JRuby Trinidad pool size?
When I first boot up Trinidad via "jruby -S trinidad"
I get the msg:
added application to pool, size now = 1
How do I increase the size of this pool in my config/trinidad.yml?
0
votes
1answer
19 views
How to add Jar dependencies for JRuby + Trinidad
I am using JRuby with Trinidad.
It seems I am able to get Trinidad to recognize my class, which is "com.x.HttpClient".
But it doesn't recognize the JARs this class depends on (the HttpClient ones)
...
0
votes
0answers
50 views
Loading GAMS Java API in JRuby
I'm working on a Java/JRuby project which needs to be able to be able to interact with GAMS. I know we can use the Java API, but I would really like to be able to access it using JRuby if possible, ...
0
votes
0answers
25 views
Rails 2 - Problems running project
I work with JRuby and Rails 3.2 but now I've found I got to work on a project on Rails 2.
I know some basic things about Rails 2 like the command jruby ./script/server to start the server instead of ...
0
votes
1answer
31 views
How can Rails have different csrf tokens at different times?
tl;dr
In my product, rails seems to have different csrf tokens on different page visits, but I thought that there was only one csrf token per session. Am I misunderstanding how rails' csrf token ...
0
votes
0answers
39 views
JRuby Android App Development [closed]
I am relatively new to the Ruby Language been learning since the past
half month about it. I have actually also been assigned a student
project to develop an android app so i decided to choose jruby ...
0
votes
1answer
28 views
How to do blocking subscribe using bunny RabbitMQ client?
In java RabbitMQ client I can do (code in ruby):
consumer = QueueingConsumer.new(channel);
channel.basicConsume(queue_name, true, consumer);
consumer.nextDelivery.getBody
And then third line ...
1
vote
1answer
45 views
How to add Ruboto path to android sdk?
I am new to Ruboto gem. I am currently working on android with Ruboto. I know android. I have installed the all requirements for Rubuto. I try to created the sample project using following command,
$ ...
1
vote
1answer
83 views
Bundler::Git error on app startup (passenger 4, nginx flavor, and jruby 1.7.3 for the app under rvm)
There are many similar questions, but they are rather dated. The error is familiar, but updated now for passenger 4.0.0.2 and jruby 1.7.3.
The web application cannot be started, and in the stack ...
1
vote
0answers
36 views
jruby dragonfly gem - “incompatible character encodings: UTF-8 and ASCII-8BIT” when open file with special characters
I'm a newbie in jruby, I'm currently working on a Jruby app that use Dragonfly gem to handle image upload.
The problem here is when uploading a zip file (called abc.zip) containing a file name like ...
0
votes
1answer
39 views
How to get postgresql to work with sequel and jruby
require 'sequel'
require 'jdbc/postgres'
DB = Sequel.connect("jdbc:postgresql://user:pass@domain/database")
DB.tables
Returns:
....(bla bla bla stack trace bla bla bla)....
...
0
votes
1answer
29 views
Cant find element in clone document
I am using Nokogiri (1.5.9 - java) in JRuby ( 1.6.7.2 ) to copy an XML template and edit it. I'm having problems finding elements in the cloned document.
lblock = ...
1
vote
1answer
68 views
Porting a rails4 app from MRI to JRuby with puma, no luck
I'm developing a rails 4.0.0.beta1 app on MRI 2.0.0 and all looks working. I would like to try to run it on JRuby with puma.
$ ruby -v
jruby 1.7.3 (1.9.3p385) 2013-02-21 dac429b on Java HotSpot(TM) ...
1
vote
2answers
89 views
passenger 4.0 standalone not starting when using jruby under rvm
Passenger 4 claims to have support for jruby. When I change into my jruby project directory, execute rvm use jruby and proceed to passenger start it state that the Ruby development headers cannot be ...
1
vote
2answers
34 views
Coerce a ByteArrayInputStream to InputStream
I have some code that does:
content = Java::byte[s].new
f = tar.read(content, 0, s)
content_stream = ByteArrayInputStream.new(content)
So far, so good
But when I try to use a method that only ...
0
votes
1answer
27 views
Cron automatically detect jruby path and execute ruby script
I've a cron job that is supposed to execute a ruby script but it is failing with:
/bin/sh: 1: jruby: not found
I know I can set manually jruby location but I want cron to pick automatically as this ...
1
vote
2answers
43 views
Why does jruby-openssl gem have strange folder structure?
From my understanding, a gem's folder structer is supposed to have a folder called lib and inside that folder have a <gem-name>.rb file. However, when I used jruby 1.6.8 and do bundle install ...
0
votes
0answers
32 views
xsl:output method text and relative import doesn't work with Nokogiri Jruby
We were using Nokogiri with Ruby since last 3 months and it was working absolutely fine. Due to some architectural change we are moving to Jruby. We realized that xsl:output method="text" doesn't work ...
0
votes
0answers
20 views
using jruby to manipulate algorithms in weka
how do I begin using jruby with weka, as am new to programming. aim is to manipulate machine learning algorithms in weka using jruby to achieve active learning.
for instance active learning with ...
0
votes
0answers
31 views
JRuby Calling Java Methods - TypeError/ConcreteJavaProxy
I am creating a jruby library that has JDI bindings, but when calling a java method, I am getting some weird object inconsistencies that aren't allowing me to call certain methods.
new_value ...
0
votes
2answers
33 views
jruby1.6.7+watir+cucumer1.2.1 on win7 can not open ff14.0.1
I installed jruby1.6.7 on win7 and firefox 14.0.1 and run jruby -v is ok
and installed below plugin:
jgem install activerecord -v='3.0.5'
jgem install activerecord-jdbc-adapter -v='1.1.3'
jgem ...
