class Falcon::Service::Generic

def include?(keys)

This is used for matching environment configuration to service behaviour.
Whether the service environment contains the specified keys.
def include?(keys)
	keys.all?{|key| @environment.include?(key)}
end