ruy 0.2.1 → 0.3.0

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,24 +0,0 @@
1
- module Ruy
2
- # Context that can resolve variable access
3
- class VariableContext
4
- def initialize(ctx, vars)
5
- @ctx = ctx
6
- @vars = vars
7
-
8
- @resolved_vars = {}
9
- end
10
-
11
- # Resolve the given attr from the variables or the context
12
- # If attribute can't be resolved then throw an exception
13
- #
14
- # @param [Symbol] attr
15
- # @return [Object]
16
- def resolve(attr)
17
- if @vars.include?(attr)
18
- @resolved_vars[attr] ||= @ctx.instance_exec(&@vars[attr])
19
- else
20
- @ctx.fetch(attr) { |key| @ctx[key.to_s] }
21
- end
22
- end
23
- end
24
- end