Method: EasyType::Group#include?

Defined in:
lib/easy_type/group.rb

#include?(group_name) ⇒ Boolean

Returns true if the group exists

Parameters:

  • group_name (String)

    this is the name of the group.

Returns:

  • (Boolean)

    true if the group exists. False if the group doesn’t exist.



72
73
74
# File 'lib/easy_type/group.rb', line 72

def include?(group_name)
  @content.keys.include?(group_name)
end