Methods
Public Instance methods
injectable_attributes()

Returns an array of attributes of the class that have been declared to be injectable. See attr_inject and Object#inject_attributes.

    # 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