Sha256: cd2bc1b6474c96730521dc5cb37b8f6e84cc85f031cdbdf1c4f5fbc2fd5a94c5

Contents?: true

Size: 230 Bytes

Versions: 6

Compression:

Stored size: 230 Bytes

Contents

class MergeController < ApplicationController
  param_accessible :a, :only => :first
  param_accessible :b
  param_accessible({ :h => :c}, :except => :first)
  param_accessible :h => :b
  

  def first; end

  def second; end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
param_protected-4.0.0 test/app_root/app/controllers/merge_controller.rb
param_protected-3.0.0 test/app_root/app/controllers/merge_controller.rb
param_protected-2.0.0 test/app_root/app/controllers/merge_controller.rb
param_protected-1.3.1 test/app_root/app/controllers/merge_controller.rb
param_protected-1.3.0 test/app_root/app/controllers/merge_controller.rb
param_protected-1.2.0 test/app_root/app/controllers/merge_controller.rb