peony 0.0.2 → 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.
@@ -1,22 +0,0 @@
1
- module Peony
2
- class TemplateBinding
3
-
4
- def initialize(settings)
5
- @settings = settings
6
- end
7
-
8
- def context_binding
9
- binding
10
- end
11
-
12
- def method_missing(meth, *args, &blk)
13
- val = @settings.send(meth, *args, &blk)
14
- if val == nil
15
- super
16
- else
17
- val
18
- end
19
- end
20
-
21
- end
22
- end