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

Add a simple way to extend class methods #4

Closed
BravoSimone opened this issue Jul 8, 2019 · 0 comments · Fixed by #5
Closed

Add a simple way to extend class methods #4

BravoSimone opened this issue Jul 8, 2019 · 0 comments · Fixed by #5

Comments

@BravoSimone
Copy link

Right now you need to define self.prepended method and use the class passed as a parameter to override all class methods. It would be great to automatically use all methods defined in a nested module called ClassMethods to override class ones:

module Animals::Dog::AddGenus
  module ClassMethods
    def genus
      'canis'
    end
  end
end

Animals::Dog.genus #=> 'canis'
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

Successfully merging a pull request may close this issue.

1 participant