Expert
What is attr_accessor for?
Author: HivebriteStatus: PublishedQuestion passed 272 times
Edit
2
Community EvaluationsNo one has reviewed this question yet, be the first!
Similar QuestionsMore questions about Ruby
1
What is the difference between include, extend and prepend in Ruby?0
Define a class foobar that inherits from Array and has a method foo.0
What is the output of the following code?
class A
def method1
puts 'method1'
end
private
def method3
puts 'method3'
end
end
obj = A.new
obj.method1
obj.method30
How to add a gem to a Ruby project?0
What is the output of the following Ruby code? `numbers = [1, 2, 3, 4, 5]`
`numbers.each { |n| puts n }`
`numbers.map { |n| puts n }`