How can I access reserved_words
in the code below from outside?
module FriendlyId
module Reserved
module Configuration
attr_accessor :reserved_words
end
end
end
Doing FriendlyId::Reserved::Configuration.instance_variable_get(:reserved_words)
gives me the following error:
NameError: 'reserved_words' is not allowed as an instance variable name