Method: CloudFormer::HasPropertiesAndAttributes::ClassMethods#aws_attributes
- Defined in:
- lib/cloud_former/has_properties_and_attributes.rb
#aws_attributes ⇒ Object
145 146 147 148 149 150 151 152 153 154 |
# File 'lib/cloud_former/has_properties_and_attributes.rb', line 145 def aws_attributes answer = [] if defined?(@aws_attributes) answer = @aws_attributes end if superclass && superclass.respond_to?(:aws_attributes) answer += superclass.aws_attributes end answer end |