peony 0.0.2 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -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