4
votes
2answers
231 views
How to dynamically call accessor methods in Ruby
Regardless of whether it's good practice or not, how can I dynamically call accessor methods in Ruby?
Here's an example class:
class Test_Class
attr_accessor :a, :b
end
…
1
vote
2answers
136 views
How to Dynamically Determine a Method Name in Ruby
In Ruby, is there a way to determine the name of a method, akin to how the "class" method returns an object's type?
For example:
def example_method
puts method_name
end
# …
5
votes
2
votes
How to set class-scope constants in ruby?
Class variables in ruby are designated by "@@"
class ProjectEuler_tests < Test:: …
