Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 ||= self.class.const_get(:Railties).new
  # @railties ||= self.class::Railties.new
 end

Otherwise I get this:

./bin/rake rake aborted! uninitialized constant Myapp::Application::Railties org/jruby/RubyModule.java:2677:in const_missing' /Volumes/Opt/rails/rails-edge/railties/lib/rails/engine.rb:469:inrailties' /Volumes/Opt/rails/rails-edge/railties/lib/rails/application.rb:241:in run_tasks_blocks' /Volumes/Opt/rails/rails-edge/railties/lib/rails/engine.rb:444:inload_tasks' org/jruby/RubyBasicObject.java:1659:in __send__' org/jruby/RubyKernel.java:2086:insend' /Volumes/Opt/rails/rails-edge/railties/lib/rails/railtie/configurable.rb:30:in method_missing' /Volumes/Opt/projects/myapp/Rakefile:6:in(root)' org/jruby/RubyKernel.java:1046:in `load'

Rails itself won't start up for the same reason. Is this the correct fix or did I mask some underlying problem?

like image 643
Michael Schmitz Avatar asked Jan 25 '13 18:01

Michael Schmitz


1 Answers

Doesn't really solve the problem but I added

Rails::Engine.class_eval do
  def railties
    @railties ||= self.class.const_get(:Railties).new
  end
end

under Bundler.require in application.rb to avoid having to change the original files.

like image 141
Alex Lang Avatar answered Sep 27 '22 18:09

Alex Lang