rails-action-args 0.1.0 → 0.1.1

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/.gitignore CHANGED
@@ -3,3 +3,4 @@
3
3
  coverage
4
4
  rdoc
5
5
  pkg
6
+ .bundle
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 0
4
+ :patch: 1
@@ -0,0 +1,2 @@
1
+ require 'rails-action-args/get_args'
2
+ require 'rails-action-args/abstract_controller'
@@ -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.0"
8
+ s.version = "0.1.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Andy Delcambre"]
@@ -24,12 +24,12 @@ Gem::Specification.new do |s|
24
24
  "README.markdown",
25
25
  "Rakefile",
26
26
  "VERSION.yml",
27
- "lib/rails_action_args.rb",
28
- "lib/rails_action_args/abstract_controller.rb",
29
- "lib/rails_action_args/get_args.rb",
30
- "lib/rails_action_args/jruby_args.rb",
31
- "lib/rails_action_args/mri_args.rb",
32
- "lib/rails_action_args/vm_args.rb",
27
+ "lib/rails-action-args.rb",
28
+ "lib/rails-action-args/abstract_controller.rb",
29
+ "lib/rails-action-args/get_args.rb",
30
+ "lib/rails-action-args/jruby_args.rb",
31
+ "lib/rails-action-args/mri_args.rb",
32
+ "lib/rails-action-args/vm_args.rb",
33
33
  "rails-action-args.gemspec",
34
34
  "spec/controllers/action_args_controller.rb",
35
35
  "spec/rails_action_args_spec.rb",
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andy Delcambre
@@ -58,12 +58,12 @@ files:
58
58
  - README.markdown
59
59
  - Rakefile
60
60
  - VERSION.yml
61
- - lib/rails_action_args.rb
62
- - lib/rails_action_args/abstract_controller.rb
63
- - lib/rails_action_args/get_args.rb
64
- - lib/rails_action_args/jruby_args.rb
65
- - lib/rails_action_args/mri_args.rb
66
- - lib/rails_action_args/vm_args.rb
61
+ - lib/rails-action-args.rb
62
+ - lib/rails-action-args/abstract_controller.rb
63
+ - lib/rails-action-args/get_args.rb
64
+ - lib/rails-action-args/jruby_args.rb
65
+ - lib/rails-action-args/mri_args.rb
66
+ - lib/rails-action-args/vm_args.rb
67
67
  - rails-action-args.gemspec
68
68
  - spec/controllers/action_args_controller.rb
69
69
  - spec/rails_action_args_spec.rb
@@ -1,2 +0,0 @@
1
- require 'rails_action_args/get_args'
2
- require 'rails_action_args/abstract_controller'