class SPNet::NoLimiter

Does not limit values at all.

@author James Tunnell

Public Instance Methods

apply_limit(value, current_value = nil) click to toggle source

Does not limit at all. Return the given value.

# File lib/spnet/limiters/no_limiter.rb, line 7
def apply_limit value, current_value = nil
  return value
end