Tagged Questions
54
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?
5
votes
1answer
99 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
...
3
votes
1answer
600 views
Braces: [Brackets], (Parentheses) & {Curlies} in Ruby & Rails
So the loose tolerance of Ruby to use braces sometimes and not REQUIRE them has led to alot of confusion for me as I'm trying to learn Rails and when/where to use each and why?
Sometimes parameters ...
3
votes
5answers
597 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
197 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
124 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
5answers
474 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
299 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 ...
1
vote
0answers
25 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
1answer
104 views
Jruby, Rails3.1, Sprockets - Same File error
On windows, running Jruby 1.6.4 - this issue occurs in Sprockets 2.0.0 and 2.0.2, Rails 3.1.0 and 3.1.1. Using therubyrhino as the js runtime, but this also occurs when using execjs (which correctly ...
1
vote
1answer
68 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
114 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
1k views
Rails - Mysql::ProtocolError: invalid packet [closed]
Possible Duplicate:
Perplexing Ruby/MySQL Error: "invalid packet: sequence number mismatch"
My rails app just started having these strange MySQL errors on my EC2/RDS stack.
I've ...
1
vote
1answer
170 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
151 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
289 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
2answers
201 views
What do I need to know about JRuby on Rails after developing RoR Apps?
I have done a few projects using Ruby on Rails. I am going to use JRuby on Rails and hosting it on GAE. In that case what are the stuff that I need to know while developing JRuby apps. I read that
...
1
vote
1answer
181 views
wrong # of arguments(0 for 1)
Here is my Test model code:
require 'rubygems'
require 'composite_primary_keys'
class VamTest < ActiveRecord::Base
set_table_name 'tests'
set_primary_keys :service, :host
end
This is the ...
1
vote
4answers
270 views
Good framework for Ruby web development
Basically I am java developer and exploring ruby and ruby related framework right now. I am mostly working on web based projects. I had heard about RoR and Merb for web development in ruby. I am ...
0
votes
0answers
24 views
Controller not identified when added inside a plugin : throws Uninitialized Constant error
I'm setting up controller inside a plugin as follows,
In vendors/plugins/blogs/app/controllers/blogs_controller.rb
class BlogsController < ApplicationController
def index
end
end
In ...
0
votes
1answer
95 views
therubyrhino or therubyracer but for Ruby, not JavaScript
Is there something like therubyrhino or therubyracer but for JRuby, not JavaScript?
I tested eval but this allows to access all models and classes from my Rails-Project. I really want to force the ...
0
votes
1answer
91 views
Compile all .rb files of a Ruby on Rails app to .class using JRuby, pack it into a .war and deploy into a Java appserver
Is it possible to compile all .rb source files files (including the configuration source file files) of Ruby on Rails to .class files using JRuby, pack it into a .war file and deploy to JBoss or ...
0
votes
1answer
244 views
error 'in `arraycopy': java.lang.ArrayIndexOutOfBoundsExceptionA' getting while installing roo gem with jruby
I am getting following error while installing gem roo in jruby.
C:\tibbr\svn\community_manager>gem install roo
System.java:-2:in `arraycopy': java.lang.ArrayIndexOutOfBoundsException
from ...
0
votes
0answers
39 views
How to change prod server RubyOnRails config to use Java - JRuby?
I have app already running in prod using ROR. But now there is a need to make java call from Ruby. JRuby seems to be best fit but wondering whether there is anyway to change my ROR config to use JRuby ...
0
votes
1answer
33 views
Jruby Glassfish Memory split
I have a very strange problem where after a day or two, it seems that my app splits the memory in half.
So I have a:
class Persist
@@hash ||= Hash.new
def store(k, v)
@@hash[k] = v
...
0
votes
4answers
183 views
Strange RoR problem; googlebot gets error, human sees page
I maintain a Ruby-on-Rails website (actually running JRuby 1.5.5, Rails version 2.3.10) and am seeing something fairly strange. A certain controller action is causing an exception in the logs, when ...