In rails 3, can helper functions be used in library classes? For example, I have an assistant:
module CarHelper
def total_price(cars)
end
end
In my lib / my_library.rb
class MyLibrary
def myFunc
end
end
How to use helper functions in lib classes?
source
share