I have this method in the lib dir (file my_class_name.rb):
class MyClassName
def doSomething
...
end
...
end
in the controller:
class UsersController < ApplicationController
require 'my_class_name'
def show_stats
::MyClassName.doSomething()
end
end
returns
undefined method `doSomething' for MyClassName:Class
How to properly call this method?

