my ruby (on rails) class looks like:
class Foo def self.method1 someAction end
def self.method2 someAction end
def someAction //doSmth end end
any ideas how to make this work or achieve the same behavior some other way?
thanks!
|
|
my ruby (on rails) class looks like: class Foo def self.method1 someAction end def self.method2 someAction end def someAction //doSmth end end any ideas how to make this work or achieve the same behavior some other way? thanks!
|
||
|
|
|
If some_action is appropriate as a class method, I'd do it like this:
If method1 is supposed to be a convenience method, then I'd do like Hates_ said to.
The decision for me is usually whether some_action is more of a utility method (like generating a random key, in which case I'd pick the first form), or if it's an entry point to something more complex (like a parser, in which case I'd pick the second form). |
||
|
|
|
|
You cannot call an instance method from a class method, without an actual instance of the class itself. You can do it as such:
|
||||
|