Name error:Uninitialised constant-Rails namespaced modules

42 Views Asked by At

I have rails app in that I have namespaced all modules required. The modules are not loading and getting Name error Uninitialised constant Udp

/app/adapters/Udp/     #Here Udp is the module name

contains two files.

first.rb

module Udp
  class First        #First is the class name
    def self.first_ac
        "first"
    end
  end
end

sec.rb

module Udp
  class Sec
    def self.sec_ac
        "sec"
    end
  end
end

config/application.rb

config.autoload_paths += Dir["#{config.root}/app/adapters/**/*"]

I am trying to access: Articles_controller

def index
  msg = Article.invite
  render text: msg
end

Article.rb

def self.invite
    msg = Udp::First.first_ac
    msg
end 

Please help me solving it.

1

There are 1 best solutions below

0
On

I solved it by editing /config/environments/development.rb as below

config.eager_load = true