2021-6-24 · except (*keys) Link. Returns a hash that includes everything except given keys. hash = { a: true, b: false, c: nil } hash.except(:c) hash.except(:a, :b) hash. This is useful for limiting a set of parameters to everything but a few known toggles: @person.update(params[:person].except(:admin)) Source: show | on GitHub.
2021-6-24 · ActionDispatch::Cookies. Read and write data to cookies through ActionController#cookies. When reading cookie data, the data is read from the HTTP request header, Cookie. When writing cookie data, the data is sent out in the HTTP response header, Set-Cookie. Examples of writing: