1

I just started to learn Ruby on Rails. Now I created a simple project and it worked fine in IDE (Aptana). My question is: How can I deploy it in Glassfish?

Some online articles mentioned JRuby and some Glassfish Gem, but there's no details on how to do it. Do I have to use JRuby and is there a step by step tutorials that tell me how to deploy my rails project in Glassfish?

Thanks.

neo
  • 2,461
  • 9
  • 42
  • 67

1 Answers1

1

Yes, you have to use JRuby as Glassfish is a Java EE Application Server.

Here is a tutorial:

http://docs.oracle.com/cd/E19776-01/820-4926/chapterone/index.html

DanS
  • 17,550
  • 9
  • 53
  • 47
  • So can i somehow convert my existing RoR project into using JRuby? – neo Apr 19 '12 at 20:50
  • Have a look at this question: http://stackoverflow.com/questions/3216128/convert-a-ruby-on-rails-project-to-a-jruby-on-rails-project – DanS Apr 20 '12 at 08:51