Module: SocialStream::Models::Supertype::InstanceMethods
- Defined in:
- lib/social_stream/models/supertype.rb
Instance Method Summary collapse
Instance Method Details
#subtype_instance ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/social_stream/models/supertype.rb', line 30 def subtype_instance self.class.subtypes.each do |s| i = __send__(s) return i if i.present? end nil end |