Sha256: b184d7a863e302633d37ee325bd294277e8d832b07e2d7973043f71dbec6ad6b

Contents?: true

Size: 231 Bytes

Versions: 2

Compression:

Stored size: 231 Bytes

Contents

# frozen_string_literal: true

require 'action_controller'

class Controller < ActionController::Base
  def initialize(params = {})
    @params = ActionController::Parameters.new(params)
  end

  private

  attr_reader :params
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
azeroth-1.0.0 spec/support/app/controllers/controller.rb
azeroth-0.10.1 spec/support/app/controllers/controller.rb