JRuby on Rails is a term to describe a Ruby On Rails application running on JRuby.
1
vote
1answer
37 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) ...
0
votes
0answers
27 views
Error: We're sorry, but something went wrong. Simple JRuby on Rails Program on Tomcat
situation:
Environment: Windows 8, JRuby 1.7.3, Rails 3.2.13, ...
I'm trying to run a sample program from a JRuby on Rails teaching book
so far:
Created Simple Ruby on Rails project "answerme" ...
0
votes
0answers
34 views
Getting OutOfMemoryError: GC overhead limit exception when using ActiveRecord::find_in_batces (20 records a time)
I am using:
Rails 3.0.7
jruby 1.6.7 (ruby-1.8.7-p357)
and trying to process ~360K DB records in batches of 20, as following:
BackJobs.find_in_batches(:conditions => "progress = -1", :batch_size ...
0
votes
1answer
29 views
Rails execute script on server on Dojo Button click
I've ruby script as part of rails application which is used to copy files from some directory to another inside the server. I am using Dojo as front-end. I've a dojo widget which is displaying a ...
0
votes
0answers
30 views
gem install bouncy-castle-java for full support
I am getting this warning message on the deployment server, when I start the server or running the console.
OpenSSL ASN1/PKey/X509/Netscape/PKCS7 implementation unavailable
gem install ...
0
votes
0answers
58 views
How to insert special characters and keywords into database using `ActiveRecord`
I've exported application code from a Ruby On Rails app that needs to be inserted into PostgreSQL and MySql using ActiveRecord. I've tried different escapes, but no luck. I've tried E and $$ for ...
0
votes
1answer
66 views
Upload Jruby on rails on Google App Engine - cannot find gem appengine-rack
Just trying to deploy a simple Jruby on rails app on Google App Engine but falling at first hurdle.
I've been following instructions on https://code.google.com/p/appengine-jruby/ and a few other ...
0
votes
0answers
33 views
cap deploy permission denied
I am running into this issue that is just becoming increasingly annoying. I keep deploying my jruby on rails app using capistrano and about every 1 out of 2 times I am receiving a message like: ...
0
votes
1answer
45 views
Running websocket server with stomp
I have torquebox installed in my jruby on Rails application. And I am experimenting with using stomp + websockets. But I can't tell if the websocket server is even running? I am booting up torquebox ...
1
vote
0answers
41 views
Using Torquebox to send messages to the browser
So our team has recently implemented torquebox into our jruby on rails applications. The purpose of this was to be able to receive queue/topic messages from an outside source which is streaming live ...
0
votes
0answers
19 views
jruby on rails with jdbc
Hy,
I am a new in JRuby on Rails. I installed RadRails and many gems:
pieces of gems
activerecord (2.3.4)
ActiveRecord-JDBC (0.5)
activerecord-jdbc-adapter (1.2.9)
activerecord-jdbcmysql-adapter ...
0
votes
0answers
24 views
Mail merge for Dynamic User Letters in ruby on rails
I am building a Rails 3 app for the user to create a letter to produce in word or pdf for the mail merge.
I have a model had the name, address, date, etc., I just want like the user can type the ...
1
vote
1answer
55 views
Torque box - deploy additional jar file (rvm)
I have Jruby on rails application connected with DB2 C-Express. My problem is that the torquebox is not able to find the additional jar driver which I am using to connect the database and the ...
0
votes
0answers
61 views
Torquebox - project is not updated
I have installed:
Ubuntu 12.10
jruby 1.7.3
ruby 2
rails 3.2.13
RubyMine 5
DB2 C-Express
I have create a sample application and connected it correctly to the database - I know this because I have ...
0
votes
0answers
19 views
undefined method 'text': TorqueBox
I am running TorqueBox in a jruby on rails application. I am able to deploy/run the rails application successfully. I can confirm that I am receiving messages. But when I try to instantiate a new ...
0
votes
1answer
92 views
Jruby on rails - Torque box vs Tomcat
I am completely new in application server configuration and deployment. I am using Ubuntu 12.04 LTS and have JRuby on rails application (war file) that I want do deploy and to be visible from external ...
0
votes
1answer
32 views
Rails with RackFilter and assets
I am having an issue using a custom RackFilter setting and being able to correctly locate or leverage the rake:precompile function in production.
My environment is as follows:
jruby 1.7.3
Rails ...
0
votes
0answers
34 views
Enabling config.threadsafe! AND autoloading in JRuby on Rails 3.2
I know that config.threadsafe! turns of autoloading since its not threadsafe in MRI Ruby, but it is in JRuby though, is there any way in Rails 3.2 to turn both on at the same time?
0
votes
0answers
20 views
Crazy NoMethodError's on hot restart of Rails app
I'm running a multithreaded JRuby on Rails app with Trinidad with config.threadsafe!, but every time I hot restart under load I get crazy NoMethodErrors (It may also happen on normal startup, I just ...
0
votes
0answers
52 views
Rails3 with jruby war deployment on tomcat. I am able to access MyApp/public/index.html page. Fails to all other view pages
I have debug my application thoroughly by using http://guides.rubyonrails.org/initialization.html process. I am able to see all logs which i have keep inside different init files, able to see print ...
4
votes
1answer
179 views
Simplest way to have trinidad depend on an alternate version of jruby-rack?
The current Trinidad gem depends on jruby-rack 1.1.0 which has some errors being displayed in my development log for every single one of my assets
...
0
votes
0answers
30 views
Can't dup TrueClass when precompiling ejs assets in JRuby
When running rake assets:precompile in JRuby I'm getting the following backtrace:
can't dup TrueClass
(in C:/tripwire/app/assets/templates/alert_histories/index.jst.ejs.slim)
...
0
votes
1answer
69 views
Non-clean shut down and dirty log for neo4j
I have been keep getting this error while rebuilding index for my production db:
org.neo4j.kernel.impl.transaction.TxManager commit
** [out :: XXX] SEVERE: Commit failed
** [out :: XXX] ...
0
votes
1answer
61 views
reuse shared/bundle between mri ruby and jruby?
I'm using capistrano to deploy a rails app, and it uses bundle install --deployment to put the gems in shared/bundle. I've put the appropriate platform :ruby and platform :jruby blocks in my gemfile, ...
0
votes
1answer
67 views
Configuring Apache with Trinidad and a Jruby on Rails app
The Trinidad docs tell how to get a Jruby on Rails app up and running in detail, but can someone tell me / point me to a good tutorial on how to configure Apache to use the Trinidad server?
1
vote
1answer
172 views
Rails 3 - ActiveRecord::ConnectionNotEstablished
I am getting the following error
ActiveRecord::ConnectionNotEstablished
on new created project after I have changed my database.yml file like this:
development:
adapter: jdbc
driver: ...
1
vote
1answer
112 views
Ruby on rails - “cannot load Java class com.ibm.db2.jcc.DB2Driver”
I am using:
Ubuntu 12.04 LTC
JRuby 1.7.2
Rails 3.2.12
DB2 C express 10.1
My database.yml file looks like this:
development:
adapter: jdbc
driver: com.ibm.db2.jcc.DB2Driver
url: ...
0
votes
0answers
20 views
How to deploy Resque on Glassfish or Tomcat by itself without the web server
I have a JRuby/Rails web application which uses Resque to process background jobs. I would like to deploy Resque on Glassfish on a second server without the web server, but configure it to process ...
0
votes
2answers
81 views
Error while installing jruby on windows 7
I am trying to install JRuby in my system, I follow the following steps:
Download a copy of the latest JRuby from the JRuby download page.
Unzip the file with your achive program. If you don't have ...
0
votes
1answer
119 views
Rails 3.2.x + Glassfish + How to multithread?
I have a JRuby 1.6.7/Rails 3.2.11 web application deployed on Glassfish (with no web server in front of it). I would like to make my application multi-threaded.
A best practices article suggests ...
0
votes
1answer
45 views
warble aborted! lib/cpp (No such file or directory)
I am trying to create war to deploy. But I get error warble aborted!
lib/cpp (No such file or directory) whenever i fire warble war command
$ warble war
rm -f ROOT.war
Creating ROOT.war
warble ...
6
votes
2answers
451 views
Myapp::Application::Railties constant missing with Rails 4 beta and Jruby jruby-1.7.2
I couldn't get jruby to work with Rails 4 without a hack:
In railties/lib/rails/engine.rb, I had to initialize Railties with const_get, otherwise
def railties
@railties ||= ...
0
votes
1answer
67 views
send_file Rails 2 Issue
In my Rails (2.3.10). I found some weird issue. My application needs to download a XML file when a user hit the downloaded URL.
For example :
http://www.example.com/test/all.xml
The problem here ...
1
vote
0answers
42 views
warbler seems to use a different ffi that doesn't understand size_t
FFI understands :size_t when running rails through jRuby, but not after using Warbler to create a .war file and running that using java -jar my_project.war or Tomcat.
Linux | ...
5
votes
1answer
52 views
No of consumers getting reduced as time is passed in Torquebox
I have a rails app which is on torquebox. I am using processors to some background jobs. I have alloted 4 workers to that processor.
queues:
/queue/company:
messaging:
/queue/company:
...
-2
votes
2answers
78 views
how to write into neo4j database in rails application? [closed]
I am working on ruby on rails app with Neo4j and
i am using the following version :
rails :3.1.3
neo4j :1.3.0
jruby :1.6.5
I want to know how can i write into database.
I know about neo4j-shell but ...
3
votes
1answer
332 views
Will Rails 4 work on JRuby? [closed]
It looks like Rails 4 only targets Ruby 1.9.3+. Will Rails 4 be compatible with JRuby?
1
vote
2answers
71 views
How To User jRuby as default engine on Windows without RVM?
I'm developing a project with Ruby on Rails and my operating system is Windows 7. Some point I had to use a java .jar library for handling some works. I've searched a lot but I couldn't find a way how ...
0
votes
0answers
53 views
org.jruby.exceptions.RaiseException: (NameError) cannot link Java class
I always get this ERROR when using Jruby on Rails, anyone can help me out this?
I use Jruby 1.7.1, Warbler and Tomcat 6
Does Jruby only load jars in folder WEB-INF/lib?
Very appreciated for any ...
1
vote
1answer
66 views
Where can I find developer output from Rails application deployed to Torquebox
I have a JRuby on Rails application, which is usually deployed as war to Tomcat. In development mode we use either WEBrick or trinidad (usually first). Now we are considering using Toquebox.
I was ...
0
votes
1answer
81 views
Seemingly naked nodes in Neo4j-rails
We're using a jRuby on Rails with Neo4j, and we're getting some very odd errors. Currently, we have users able to create posts. Very rarely, it seems that they get unwrapped nodes in their "posts" ...
1
vote
0answers
64 views
How to display all the scraped data in a attribute?
I'm trying to parse the total price from this page ...
1
vote
0answers
70 views
NoMethodError: undefined method `asText' for #<Java::JavaUtil::ArrayList:0x1e03a61>
I'm trying to parse a simple html page http://www.brainjar.com/java/host/test.html using the jruby and htmlunit but i encountered the error undefined method 'asText'.
my code:
require 'java';
...
0
votes
2answers
86 views
What is the way to add jar dependencies to a JRuby on rails app in heroku?
I'm a JRuby newbie and I'm trying to deploy in Heroku following these steps:
https://devcenter.heroku.com/articles/moving-an-existing-rails-app-to-run-on-jruby
But I can't figure out the way to add ...
5
votes
0answers
262 views
JRuby 1.7.1 and PsychParser error parsing UTF-8 YAML file (Rails 3.2.8)
In our JRuby/Rails project, we are using the i18n gem, and support Japanese as well as English. Our config/locales.ja.yml file is in UTF-8, without any BOM.
When running Rails 3.2.9 on JRuby 1.7.1, ...
0
votes
1answer
180 views
jruby: No such file or directory — rails (LoadError)
I was trying to create a jruby application using jruby -S rails new OSTH_GGG.
But it returns jruby: No such file or directory -- rails (LoadError).
What is the problem?
0
votes
0answers
39 views
Jruby install trinidad_init_service file not found
I'm new to deploying jruby on rails apps to ec2 and am stuck on an issue. I'm following Ryan Bates' episode on using trinidad to deploy the app, however I'm stuck on install trinidad_init_service ...
0
votes
1answer
50 views
How to stop curl command executing through jruby code?
I am having following code in my model methods which i am calling from my controller.
Kernel.system"curl -H "Content-Type:application/json" -d ...
0
votes
1answer
169 views
execute curl command in ruby code
i am trying to run following curl command from my ruby code
Kernel.system'curl -H "Content-Type:application/json" -H "Accept:application/json" -d ...
-1
votes
1answer
78 views
jruby on rails with oracle throwing error
I am a newbie in jruby on rails. I have created a basic application using rails and generated the war file and deployed in tomcat container. when i start the application i get the below error. I am ...
