0

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?

Khai Kiong
  • 371
  • 2
  • 13

1 Answers1

3

Make sure the rails gem is installed:

jruby -S gem install rails

See also this answer to get more details on how to get started with JRuby on Rails.

Community
  • 1
  • 1
Sébastien Le Callonnec
  • 26,254
  • 8
  • 67
  • 80