genki-merb_component 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -1,4 +1,4 @@
1
- merb_composer
1
+ merb_component
2
2
  =============
3
3
 
4
4
  Merb plugin that provides composition of controllers.
data/Rakefile CHANGED
@@ -5,7 +5,7 @@ require 'merb-core'
5
5
  require 'merb-core/tasks/merb'
6
6
 
7
7
  GEM_NAME = "merb_component"
8
- GEM_VERSION = "0.0.2"
8
+ GEM_VERSION = "0.0.3"
9
9
  AUTHOR = "Genki Takiuchi"
10
10
  EMAIL = "genki@s21g.com"
11
11
  HOMEPAGE = "http://blog.s21g.com/genki"
data/TODO CHANGED
@@ -1,5 +1,5 @@
1
1
  TODO:
2
2
  Fix LICENSE with your name
3
3
  Fix Rakefile with your name and contact info
4
- Add your code to lib/merb_composer.rb
5
- Add your Merb rake tasks to lib/merb_composer/merbtasks.rb
4
+ Add your code to lib/merb_component.rb
5
+ Add your Merb rake tasks to lib/merb_component/merbtasks.rb
@@ -1,6 +1,6 @@
1
1
  class Merb::Controller
2
2
  private
3
- def compose(controller, action, params = {})
3
+ def component(controller, action, params = {})
4
4
  req = request.dup
5
5
  req.reset_params!
6
6
  req.instance_variable_set :@params, params
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: genki-merb_component
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Genki Takiuchi