meta_presenter 0.1.1 → 0.1.2

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b388fb84386a27e07ce765d5c94ddcd0dae5b1389ec071aad36a56854bff665f
4
- data.tar.gz: 72ebfb24a3ce5f482b2ff14c85054861f3a5b487d0ab9ef7ffe1d8bec21fbe28
3
+ metadata.gz: eee3276e576c1200170aa138a0ae0f268f5e1f493c4f438fcbf718cd618ca566
4
+ data.tar.gz: d266e84619d51137569f4fd93da00a4981d8efc62d8593cdd9fbca5aa2192a2d
5
5
  SHA512:
6
- metadata.gz: 264c678f7929175821ed1d234c78f0c67dff822611b850c24614b1acc87577369135145f61bf763b4d56c8ac30e2e23fa3b02343aa84110f0b022dd0218647b0
7
- data.tar.gz: f30a07ba72292401626101610830b40efc7d7a0f986121c746cf31c5ccd93bb6bfeb2c39b71190aecfbdcc8774963a971cf154d634047d14dabf800453c1b083
6
+ metadata.gz: fe3f40333c7deacc1001faa760db23800102f68a3d4f1baf3b3289942fa5fe0900df225645b4c95e5b25d636d86367b69efecf1432261c9c3a2d6204d1fa6646
7
+ data.tar.gz: c3a7743081fe37d99d0057cd7ce1fa65fc3532950fa0aea9869361beaa518bc0c8ca15664788ba91bb980ef4cb4a1c3fb4e4a8a3de1df19ce155fe3a3725d9a0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- meta_presenter (0.1.0)
4
+ meta_presenter (0.1.2)
5
5
  actionpack (>= 3.0)
6
6
 
7
7
  GEM
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |spec|
4
4
  spec.name = 'meta_presenter'
5
- spec.version = '0.1.1'
5
+ spec.version = '0.1.2'
6
6
  spec.authors = ['szTheory']
7
7
  spec.description = %q{Presenter pattern in your Rails controllers and actions}
8
8
  spec.summary = %q{MetaPresenter is a Ruby gem that gives you access to the powerful presenter pattern in your Rails controllers. For each controller/action pair you get a presenter class in `app/presenters` that you can use in your views with with `presenter.method_name`. This helps you decompose your helper logic into small, tight, classes that are easily testable. There's even a DSL for method delegation on objects to reduce boilerplate.}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meta_presenter
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - szTheory