class Shamu::Features::Conditions::NotMatching

Match if another feature is also enabled.

Public Instance Methods

match?( context ) click to toggle source

(see Condition#match?)

# File lib/shamu/features/conditions/not_matching.rb, line 9
def match?( context )
  !super
end