Module: Watobo::CheckInfoMixin::InfoMethods
- Defined in:
- lib/watobo/mixins/check_info.rb
Instance Method Summary collapse
Instance Method Details
#check_group ⇒ Object
34 35 36 37 38 |
# File 'lib/watobo/mixins/check_info.rb', line 34 def check_group info = instance_variable_get("@info") return nil if info.nil? return info[:check_group] end |
#check_name ⇒ Object
26 27 28 29 30 31 32 |
# File 'lib/watobo/mixins/check_info.rb', line 26 def check_name #puts self.methods.sort info = instance_variable_get("@info") return nil if info.nil? return info[:check_name] end |