class Hash
Copyright © 2013 National ICT Australia Limited (NICTA). This software may be used and distributed solely under the terms of the MIT license (License). You should find a copy of the License in LICENSE.TXT or at opensource.org/licenses/MIT. By downloading or using this software you accept the terms and the liability disclaimer in the License.
Public Instance Methods
joined?(*group_ids)
click to toggle source
# File lib/omf_ec/core_ext/hash.rb, line 7 def joined?(*group_ids) self[:membership] && group_ids.any? { |g_id| self[:membership].include?(g_id) } end