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.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/README.md +197 -0
- data/lib/ruy.rb +2 -1
- data/lib/ruy/conditions.rb +3 -1
- data/lib/ruy/conditions/all.rb +2 -2
- data/lib/ruy/conditions/any.rb +2 -2
- data/lib/ruy/conditions/assert.rb +2 -2
- data/lib/ruy/conditions/between.rb +7 -6
- data/lib/ruy/conditions/cond.rb +3 -3
- data/lib/ruy/conditions/day_of_week.rb +6 -8
- data/lib/ruy/conditions/eq.rb +5 -6
- data/lib/ruy/conditions/except.rb +6 -6
- data/lib/ruy/conditions/greater_than.rb +30 -0
- data/lib/ruy/conditions/greater_than_or_equal.rb +5 -5
- data/lib/ruy/conditions/in.rb +31 -0
- data/lib/ruy/conditions/in_cyclic_order.rb +33 -0
- data/lib/ruy/conditions/include.rb +8 -8
- data/lib/ruy/conditions/included.rb +2 -2
- data/lib/ruy/conditions/less_than.rb +5 -5
- data/lib/ruy/conditions/less_than_or_equal.rb +4 -4
- data/lib/ruy/conditions/tz.rb +19 -18
- data/lib/ruy/context.rb +23 -5
- data/lib/ruy/dsl.rb +146 -0
- data/lib/ruy/outcome.rb +28 -3
- data/lib/ruy/rule.rb +11 -130
- data/lib/ruy/rule_set.rb +47 -23
- data/lib/ruy/time_pattern.rb +2 -2
- data/lib/ruy/utils.rb +2 -0
- data/lib/ruy/utils/naming.rb +53 -0
- data/lib/ruy/utils/printable.rb +36 -0
- metadata +32 -9
- data/lib/ruy/variable_context.rb +0 -24
data/lib/ruy/variable_context.rb
DELETED
@@ -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
|