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 +4 -4
- data/Gemfile.lock +1 -1
- data/meta_presenter.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eee3276e576c1200170aa138a0ae0f268f5e1f493c4f438fcbf718cd618ca566
|
|
4
|
+
data.tar.gz: d266e84619d51137569f4fd93da00a4981d8efc62d8593cdd9fbca5aa2192a2d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fe3f40333c7deacc1001faa760db23800102f68a3d4f1baf3b3289942fa5fe0900df225645b4c95e5b25d636d86367b69efecf1432261c9c3a2d6204d1fa6646
|
|
7
|
+
data.tar.gz: c3a7743081fe37d99d0057cd7ce1fa65fc3532950fa0aea9869361beaa518bc0c8ca15664788ba91bb980ef4cb4a1c3fb4e4a8a3de1df19ce155fe3a3725d9a0
|
data/Gemfile.lock
CHANGED
data/meta_presenter.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |spec|
|
|
4
4
|
spec.name = 'meta_presenter'
|
|
5
|
-
spec.version = '0.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.}
|