Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

method_missing #3

Open
trans opened this issue Oct 31, 2011 · 1 comment
Open

method_missing #3

trans opened this issue Oct 31, 2011 · 1 comment

Comments

@trans
Copy link

trans commented Oct 31, 2011

Sometimes I have broken down files by the method. So #method_missing could be defined to require a file too to see if that picks up the missing method.

@postmodern
Copy link
Owner

Interesting idea. Although, that sounds like something different than a namespace? You could sort of accomplish this with OpenNamespace, by putting each method in it's own module:

class Foo
  module Bar
    def bar
    end
  end

  include Bar
end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants