rails_action_args 0.1.3 → 0.1.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.3
1
+ 0.1.4
@@ -22,9 +22,7 @@ module AbstractController
22
22
  module ClassMethods
23
23
  # :api: private
24
24
  def action_args_for(action_name, params)
25
- self.action_argument_list ||= {}
26
- action_argument_list[action_name] ||= extract_action_args_for(action_name)
27
- arguments, defaults = action_argument_list[action_name]
25
+ arguments, defaults = extract_action_args_for(action_name)
28
26
 
29
27
  arguments.map do |arg, default|
30
28
  arg = arg
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rails_action_args}
8
- s.version = "0.1.3"
8
+ s.version = "0.1.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["ezmobius", "mattetti", "maiha", "Yehuda Katz", "Andy Delcambre", "Janne Asmala", "Collin Miller"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_action_args
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - ezmobius