Sha256: 9f1f3163ce5be19a8f326884068bf53e9c88f3f50dc01cad41b8a0a63f26d665
Contents?: true
Size: 206 Bytes
Versions: 24
Compression:
Stored size: 206 Bytes
Contents
# frozen_string_literal: true require 'action_controller' class Controller def initialize(params = {}) @params = ActionController::Parameters.new(params) end private attr_reader :params end
Version data entries
24 entries across 24 versions & 1 rubygems