I am currently experimenting with Ruby and Rails, and I've hit a few sections in tutorials and books about metaprogramming. Many mention that it is an essential component of Ruby but they don't really go into detail. It's as if metaprogramming is the final frontier for Ruby programmers. Coming from a .NET background I am struggling to understand why it is supposedly so useful.
- What benefits are gained when using metaprogramming?
- What is an eigenclass and how is it different from a singleton?
- In what situations is using metaprogramming common?
- What ethical implications are there around using code to modify the behaviour of other code, especially code which is not your own?