Methods
Public Instance methods
Returns an array of attributes of the class that have been declared to be injectable. See attr_inject and Object#inject_attributes.
[ show source ]
# File lib/needle/extras/attr-inject.rb, line 14 14: def injectable_attributes 15: if defined?(@injectable_attributes) 16: @injectable_attributes 17: else 18: [] 19: end 20: end