T
tony summerfelt
i have a class i'm working on:
class Myclass
def initialize()
end
def usefulmethod1()
end
def usefulmethod2()
end
it's currently over 100 lines and will probably be double that.
what's the most efficient way of turning that into a library or
module.
i'm guessing it can't be module because of the initialize method...
class Myclass
def initialize()
end
def usefulmethod1()
end
def usefulmethod2()
end
it's currently over 100 lines and will probably be double that.
what's the most efficient way of turning that into a library or
module.
i'm guessing it can't be module because of the initialize method...