What does mri most commonly stand for?
How is object methods defined in ruby?
Explain the concepts and capabilities of garbage collection feature of Ruby?
Explain raise statement in Ruby?
How an exception is handled in Ruby?
what is a class library in Ruby?
Who is the developer of Ruby?
In Ruby code, often it is observed that coder uses a short hand form of using an expression like array.map(&:method_name) instead of array.map { |element| element.method_name }. How this trick actually works?
Tell me what is the difference between ruby 1.9 and ruby 2.0?
what is the difference between Procs and Blocks?
Are numeric objects mutable in ruby?
What is the difference between calling super and calling super()?
What must you do first before you can invoke an unboundmethod object?
Tell me how would you freeze an object in ruby? Can you provide a simple example?
What is ruby object?