class Object

Public Instance Methods

hash_except(h, k) click to toggle source

Emulate Hash#except from Rails

# File lib/learnosity/sdk/utils.rb, line 2
def hash_except(h, k)
    h.reject { |kk,vv| kk == k }
end