dry-logic 1.0.2 → 1.0.8

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.
Files changed (99) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +129 -26
  3. data/LICENSE +1 -1
  4. data/README.md +12 -14
  5. data/dry-logic.gemspec +27 -14
  6. data/lib/dry-logic.rb +1 -1
  7. data/lib/dry/logic.rb +2 -2
  8. data/lib/dry/logic/evaluator.rb +1 -1
  9. data/lib/dry/logic/operations.rb +11 -11
  10. data/lib/dry/logic/operations/abstract.rb +6 -6
  11. data/lib/dry/logic/operations/and.rb +4 -4
  12. data/lib/dry/logic/operations/attr.rb +1 -1
  13. data/lib/dry/logic/operations/binary.rb +1 -1
  14. data/lib/dry/logic/operations/check.rb +4 -4
  15. data/lib/dry/logic/operations/each.rb +2 -2
  16. data/lib/dry/logic/operations/implication.rb +2 -2
  17. data/lib/dry/logic/operations/key.rb +5 -5
  18. data/lib/dry/logic/operations/negation.rb +2 -2
  19. data/lib/dry/logic/operations/or.rb +2 -2
  20. data/lib/dry/logic/operations/set.rb +3 -3
  21. data/lib/dry/logic/operations/unary.rb +1 -1
  22. data/lib/dry/logic/operations/xor.rb +2 -2
  23. data/lib/dry/logic/operators.rb +4 -4
  24. data/lib/dry/logic/predicates.rb +60 -28
  25. data/lib/dry/logic/result.rb +2 -2
  26. data/lib/dry/logic/rule.rb +11 -11
  27. data/lib/dry/logic/rule/interface.rb +32 -37
  28. data/lib/dry/logic/rule/predicate.rb +3 -3
  29. data/lib/dry/logic/rule_compiler.rb +3 -3
  30. data/lib/dry/logic/version.rb +1 -1
  31. metadata +12 -133
  32. data/.codeclimate.yml +0 -15
  33. data/.gitignore +0 -9
  34. data/.rspec +0 -3
  35. data/.travis.yml +0 -31
  36. data/CONTRIBUTING.md +0 -29
  37. data/Gemfile +0 -15
  38. data/Rakefile +0 -14
  39. data/benchmarks/rule_application.rb +0 -30
  40. data/benchmarks/setup.rb +0 -13
  41. data/bin/console +0 -11
  42. data/examples/basic.rb +0 -16
  43. data/spec/integration/result_spec.rb +0 -61
  44. data/spec/integration/rule_spec.rb +0 -55
  45. data/spec/shared/predicates.rb +0 -59
  46. data/spec/shared/rule.rb +0 -74
  47. data/spec/spec_helper.rb +0 -36
  48. data/spec/support/mutant.rb +0 -11
  49. data/spec/unit/operations/and_spec.rb +0 -70
  50. data/spec/unit/operations/attr_spec.rb +0 -29
  51. data/spec/unit/operations/check_spec.rb +0 -51
  52. data/spec/unit/operations/each_spec.rb +0 -49
  53. data/spec/unit/operations/implication_spec.rb +0 -32
  54. data/spec/unit/operations/key_spec.rb +0 -135
  55. data/spec/unit/operations/negation_spec.rb +0 -51
  56. data/spec/unit/operations/or_spec.rb +0 -75
  57. data/spec/unit/operations/set_spec.rb +0 -43
  58. data/spec/unit/operations/xor_spec.rb +0 -63
  59. data/spec/unit/predicates/array_spec.rb +0 -43
  60. data/spec/unit/predicates/attr_spec.rb +0 -31
  61. data/spec/unit/predicates/bool_spec.rb +0 -36
  62. data/spec/unit/predicates/case_spec.rb +0 -35
  63. data/spec/unit/predicates/date_spec.rb +0 -33
  64. data/spec/unit/predicates/date_time_spec.rb +0 -33
  65. data/spec/unit/predicates/decimal_spec.rb +0 -34
  66. data/spec/unit/predicates/empty_spec.rb +0 -40
  67. data/spec/unit/predicates/eql_spec.rb +0 -23
  68. data/spec/unit/predicates/even_spec.rb +0 -33
  69. data/spec/unit/predicates/excluded_from_spec.rb +0 -37
  70. data/spec/unit/predicates/excludes_spec.rb +0 -58
  71. data/spec/unit/predicates/false_spec.rb +0 -37
  72. data/spec/unit/predicates/filled_spec.rb +0 -40
  73. data/spec/unit/predicates/float_spec.rb +0 -33
  74. data/spec/unit/predicates/format_spec.rb +0 -23
  75. data/spec/unit/predicates/gt_spec.rb +0 -42
  76. data/spec/unit/predicates/gteq_spec.rb +0 -42
  77. data/spec/unit/predicates/included_in_spec.rb +0 -37
  78. data/spec/unit/predicates/includes_spec.rb +0 -24
  79. data/spec/unit/predicates/int_spec.rb +0 -36
  80. data/spec/unit/predicates/key_spec.rb +0 -31
  81. data/spec/unit/predicates/lt_spec.rb +0 -42
  82. data/spec/unit/predicates/lteq_spec.rb +0 -42
  83. data/spec/unit/predicates/max_size_spec.rb +0 -51
  84. data/spec/unit/predicates/min_size_spec.rb +0 -51
  85. data/spec/unit/predicates/none_spec.rb +0 -30
  86. data/spec/unit/predicates/not_eql_spec.rb +0 -23
  87. data/spec/unit/predicates/number_spec.rb +0 -39
  88. data/spec/unit/predicates/odd_spec.rb +0 -33
  89. data/spec/unit/predicates/respond_to_spec.rb +0 -31
  90. data/spec/unit/predicates/size_spec.rb +0 -57
  91. data/spec/unit/predicates/str_spec.rb +0 -34
  92. data/spec/unit/predicates/time_spec.rb +0 -33
  93. data/spec/unit/predicates/true_spec.rb +0 -37
  94. data/spec/unit/predicates/type_spec.rb +0 -37
  95. data/spec/unit/predicates/uuid_v4_spec.rb +0 -29
  96. data/spec/unit/predicates_spec.rb +0 -25
  97. data/spec/unit/rule/predicate_spec.rb +0 -55
  98. data/spec/unit/rule_compiler_spec.rb +0 -129
  99. data/spec/unit/rule_spec.rb +0 -213
@@ -1,36 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#bool?' do
7
- let(:predicate_name) { :bool? }
8
-
9
- context 'when value is a boolean' do
10
- let(:arguments_list) do
11
- [[true], [false]]
12
- end
13
-
14
- it_behaves_like 'a passing predicate'
15
- end
16
-
17
- context 'when value is not a bool' do
18
- let(:arguments_list) do
19
- [
20
- [''],
21
- [[]],
22
- [{}],
23
- [nil],
24
- [:symbol],
25
- [String],
26
- [1],
27
- [0],
28
- ['true'],
29
- ['false']
30
- ]
31
- end
32
-
33
- it_behaves_like 'a failing predicate'
34
- end
35
- end
36
- end
@@ -1,35 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#case?' do
7
- let(:predicate_name) { :case? }
8
-
9
- context 'when the value matches the pattern' do
10
- let(:arguments_list) do
11
- [
12
- [11, 11],
13
- [:odd?.to_proc, 11],
14
- [/\Af/, 'foo'],
15
- [Integer, 11]
16
- ]
17
- end
18
-
19
- it_behaves_like 'a passing predicate'
20
- end
21
-
22
- context "when the value doesn't match the pattern" do
23
- let(:arguments_list) do
24
- [
25
- [13, 14],
26
- [:odd?.to_proc, 12],
27
- [/\Af/, 'bar'],
28
- [String, 11]
29
- ]
30
- end
31
-
32
- it_behaves_like 'a failing predicate'
33
- end
34
- end
35
- end
@@ -1,33 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#date?' do
7
- let(:predicate_name) { :date? }
8
-
9
- context 'when value is a date' do
10
- let(:arguments_list) do
11
- [[Date.today]]
12
- end
13
-
14
- it_behaves_like 'a passing predicate'
15
- end
16
-
17
- context 'with value is not an integer' do
18
- let(:arguments_list) do
19
- [
20
- [''],
21
- [[]],
22
- [{}],
23
- [nil],
24
- [:symbol],
25
- [String],
26
- [1]
27
- ]
28
- end
29
-
30
- it_behaves_like 'a failing predicate'
31
- end
32
- end
33
- end
@@ -1,33 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#date_time?' do
7
- let(:predicate_name) { :date_time? }
8
-
9
- context 'when value is a datetime' do
10
- let(:arguments_list) do
11
- [[DateTime.now]]
12
- end
13
-
14
- it_behaves_like 'a passing predicate'
15
- end
16
-
17
- context 'with value is not an integer' do
18
- let(:arguments_list) do
19
- [
20
- [''],
21
- [[]],
22
- [{}],
23
- [nil],
24
- [:symbol],
25
- [String],
26
- [1]
27
- ]
28
- end
29
-
30
- it_behaves_like 'a failing predicate'
31
- end
32
- end
33
- end
@@ -1,34 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#decimal?' do
7
- let(:predicate_name) { :decimal? }
8
-
9
- context 'when value is a decimal' do
10
- let(:arguments_list) do
11
- [[1.2.to_d]]
12
- end
13
-
14
- it_behaves_like 'a passing predicate'
15
- end
16
-
17
- context 'with value is not an integer' do
18
- let(:arguments_list) do
19
- [
20
- [''],
21
- [[]],
22
- [{}],
23
- [nil],
24
- [:symbol],
25
- [String],
26
- [1],
27
- [1.0]
28
- ]
29
- end
30
-
31
- it_behaves_like 'a failing predicate'
32
- end
33
- end
34
- end
@@ -1,40 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#empty?' do
7
- let(:predicate_name) { :empty? }
8
-
9
- context 'when value is empty' do
10
- let(:arguments_list) do
11
- [
12
- [''],
13
- [[]],
14
- [{}],
15
- [nil]
16
- ]
17
- end
18
-
19
- it_behaves_like 'a passing predicate'
20
- end
21
-
22
- context 'with value is not empty' do
23
- let(:arguments_list) do
24
- [
25
- ['Jill'],
26
- [[1, 2, 3]],
27
- [{ name: 'John' }],
28
- [true],
29
- [false],
30
- ['1'],
31
- ['0'],
32
- [:symbol],
33
- [String]
34
- ]
35
- end
36
-
37
- it_behaves_like 'a failing predicate'
38
- end
39
- end
40
- end
@@ -1,23 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates, '#eql?' do
6
- let(:predicate_name) { :eql? }
7
-
8
- context 'when value is equal to the arg' do
9
- let(:arguments_list) do
10
- [['Foo', 'Foo']]
11
- end
12
-
13
- it_behaves_like 'a passing predicate'
14
- end
15
-
16
- context 'with value is not equal to the arg' do
17
- let(:arguments_list) do
18
- [['Bar', 'Foo']]
19
- end
20
-
21
- it_behaves_like 'a failing predicate'
22
- end
23
- end
@@ -1,33 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#even?' do
7
- let(:predicate_name) { :even? }
8
-
9
- context 'when value is an odd int' do
10
- let(:arguments_list) do
11
- [
12
- [13],
13
- [1],
14
- [1111]
15
- ]
16
- end
17
-
18
- it_behaves_like 'a failing predicate'
19
- end
20
-
21
- context 'with value is an even int' do
22
- let(:arguments_list) do
23
- [
24
- [0],
25
- [2],
26
- [2222]
27
- ]
28
- end
29
-
30
- it_behaves_like 'a passing predicate'
31
- end
32
- end
33
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#excluded_from?' do
7
- let(:predicate_name) { :excluded_from? }
8
-
9
- context 'when value is not present in list' do
10
- let(:arguments_list) do
11
- [
12
- [['Jill', 'John'], 'Jack'],
13
- [1..2, 0],
14
- [1..2, 3],
15
- [[nil, false], true]
16
- ]
17
- end
18
-
19
- it_behaves_like 'a passing predicate'
20
- end
21
-
22
- context 'with value is present in list' do
23
- let(:arguments_list) do
24
- [
25
- [['Jill', 'John'], 'Jill'],
26
- [['Jill', 'John'], 'John'],
27
- [1..2, 1],
28
- [1..2, 2],
29
- [[nil, false], nil],
30
- [[nil, false], false]
31
- ]
32
- end
33
-
34
- it_behaves_like 'a failing predicate'
35
- end
36
- end
37
- end
@@ -1,58 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#excludes?' do
7
- let(:predicate_name) { :excludes? }
8
-
9
- context 'with input excludes value' do
10
- let(:arguments_list) do
11
- [
12
- ['Jack', ['Jill', 'John']],
13
- [0, 1..2],
14
- [3, 1..2],
15
- ['foo', 'Hello World'],
16
- [:foo, { bar: 0 }],
17
- [true, [nil, false]]
18
- ]
19
- end
20
-
21
- it_behaves_like 'a passing predicate'
22
- end
23
-
24
- context 'with input of invalid type' do
25
- let(:arguments_list) do
26
- [
27
- [2, 1],
28
- [1, nil],
29
- ["foo", 1],
30
- [1, "foo"],
31
- [1..2, "foo"],
32
- ["foo", 1..2],
33
- [:key, "foo"]
34
- ]
35
- end
36
-
37
- it_behaves_like 'a passing predicate'
38
- end
39
-
40
- context 'when input includes value' do
41
- let(:arguments_list) do
42
- [
43
- ['Jill', ['Jill', 'John']],
44
- ['John', ['Jill', 'John']],
45
- [1, 1..2],
46
- [2, 1..2],
47
- ['Hello', 'Hello World'],
48
- ['World', 'Hello World'],
49
- [:bar, { bar: 0 }],
50
- [nil, [nil, false]],
51
- [false, [nil, false]]
52
- ]
53
- end
54
-
55
- it_behaves_like 'a failing predicate'
56
- end
57
- end
58
- end
@@ -1,37 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#false?' do
7
- let(:predicate_name) { :false? }
8
-
9
- context 'when value is false' do
10
- let(:arguments_list) do
11
- [[false]]
12
- end
13
-
14
- it_behaves_like 'a passing predicate'
15
- end
16
-
17
- context 'when value is not false' do
18
- let(:arguments_list) do
19
- [
20
- [true],
21
- [''],
22
- [[]],
23
- [{}],
24
- [nil],
25
- [:symbol],
26
- [String],
27
- [1],
28
- [0],
29
- ['true'],
30
- ['false']
31
- ]
32
- end
33
-
34
- it_behaves_like 'a failing predicate'
35
- end
36
- end
37
- end
@@ -1,40 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require 'dry/logic/predicates'
4
-
5
- RSpec.describe Dry::Logic::Predicates do
6
- describe '#filled?' do
7
- let(:predicate_name) { :filled? }
8
-
9
- context 'when value is filled' do
10
- let(:arguments_list) do
11
- [
12
- ['Jill'],
13
- [[1, 2, 3]],
14
- [{ name: 'John' }],
15
- [true],
16
- [false],
17
- ['1'],
18
- ['0'],
19
- [:symbol],
20
- [String]
21
- ]
22
- end
23
-
24
- it_behaves_like 'a passing predicate'
25
- end
26
-
27
- context 'with value is not filled' do
28
- let(:arguments_list) do
29
- [
30
- [''],
31
- [[]],
32
- [{}],
33
- [nil]
34
- ]
35
- end
36
-
37
- it_behaves_like 'a failing predicate'
38
- end
39
- end
40
- end