buttercms 0.1.5 → 0.1.6
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
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 791d5af2a7da43fc63cec4c2e9c98537b5fad58b
|
|
4
|
+
data.tar.gz: e06028b7a6df2e89d9273d12f5e391da4d6d9ef9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28951af34e703b3f9e1c10245ae9b5f096c1b06403431efd6affacbd653f1ec78e82b79820033a5d6db6b94868f3c4dc1ccf93ce3066feed5f7f01295c43a7c1
|
|
7
|
+
data.tar.gz: fee0f123668d11988fcf6592bfe79e3f6b78b2409a03c6b641c291179e1033133f8a1f124777966c99fbdc4d057596fa13ce8c9351b244dd014ab21873dec6af
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
module Buttercms
|
|
2
2
|
module ApplicationHelper
|
|
3
|
+
# Used to map to the parent applications url_helpers from within the blog controller views.
|
|
4
|
+
def method_missing method, *args, &block
|
|
5
|
+
method.to_s.end_with?('_path', '_url') and main_app.respond_to?(method) ? main_app.send(method, *args) : super
|
|
6
|
+
end
|
|
3
7
|
end
|
|
4
8
|
end
|
data/lib/buttercms/version.rb
CHANGED