ruleur 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/LICENSE +21 -0
  4. data/README.md +30 -0
  5. data/lib/ruleur/version.rb +5 -0
  6. metadata +128 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: f37d9ff8e58a39b29ece39581fdc430ff0ffc62d50e7a7dabd734bdfd7780d5e
4
+ data.tar.gz: 77646a54b9e3cbf17313257cb609bb1a6b89de5894d10a6521c5c353e8feeb5f
5
+ SHA512:
6
+ metadata.gz: 007ef62503f1470d82d36a51ef4a4a82f6e0d68a6721fd2a3d79c2e5124e5a308b04883c4d790f054a7f2fab28015754c86327c8bd7f5d7100fe86249980a0fb
7
+ data.tar.gz: 192d7b3438de42f0e6ea962c9eb6dc68ff61adc27f97c00886c148c23633ffb24930b46d758e2aa55ea1fb79b330449d711655e42afa6cc7a24cbbf76d4a2ad8
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ # Changelog
2
+
3
+ ## 0.0.1 / 2023-02-05
4
+
5
+ * Placeholder
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023 Geremia Taglialatela
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # Welcome to Ruleur
2
+
3
+ Ruleur is a Ruby gem that implements a Business Rule Management System
4
+ (BRMS) using the Rete algorithm. The gem allows you to manage your
5
+ business rules in a scalable and efficient manner.
6
+
7
+ ## The name "Ruleur"
8
+
9
+ The name "Ruleur" was chosen for this gem because it is concise,
10
+ memorable, and easy to associate with the purpose of the gem. The "ru"
11
+ at the beginning of the name aligns with the naming convention for
12
+ Ruby gems, and the "leur" at the end gives the name a unique and
13
+ memorable sound. The name "Ruleur" was suggested by ChatGPT, an AI
14
+ language model developed by OpenAI, which is acknowledged as a co-
15
+ author of this gem.
16
+
17
+ ## Contributing
18
+
19
+ To contribute to this gem, please follow the standard Git workflow
20
+ and submit a pull request. All contributions are welcome and
21
+ appreciated.
22
+
23
+ ## License
24
+
25
+ This gem is licensed under the [MIT License](LICENSE).
26
+
27
+ ## Credits
28
+
29
+ This gem was co-authored by Geremia Taglialatela and ChatGPT, an AI language
30
+ model developed by OpenAI.
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Ruleur
4
+ VERSION = '0.0.1'
5
+ end
metadata ADDED
@@ -0,0 +1,128 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ruleur
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Geremia Taglialatela
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-02-05 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '2.0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '2.0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '13.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '13.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.12'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.12'
55
+ - !ruby/object:Gem::Dependency
56
+ name: simplecov
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: 0.22.0
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: 0.22.0
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov-lcov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.8.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.8.0
83
+ description: |
84
+ Ruleur is a Ruby gem that provides a scalable and efficient way to manage
85
+ your business rules. It uses the Rete algorithm, a well-known algorithm
86
+ for efficient rule-based systems, to implement a Business Rule Management
87
+ System (BRMS). With Ruleur, you can manage your rules in a straightforward
88
+ and effective manner, without having to worry about performance or
89
+ scalability issues.
90
+ email:
91
+ - tagliala.dev@gmail.com
92
+ executables: []
93
+ extensions: []
94
+ extra_rdoc_files: []
95
+ files:
96
+ - CHANGELOG.md
97
+ - LICENSE
98
+ - README.md
99
+ - lib/ruleur/version.rb
100
+ homepage: https://github.com/tagliala/ruleur
101
+ licenses:
102
+ - MIT
103
+ metadata:
104
+ rubygems_mfa_required: 'true'
105
+ bug_tracker_uri: https://github.com/tagliala/ruleur/issues
106
+ changelog_uri: https://github.com/tagliala/ruleur/blob/main/CHANGELOG.md
107
+ source_code_uri: https://github.com/tagliala/ruleur
108
+ post_install_message:
109
+ rdoc_options: []
110
+ require_paths:
111
+ - lib
112
+ required_ruby_version: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - ">="
115
+ - !ruby/object:Gem::Version
116
+ version: '3.0'
117
+ required_rubygems_version: !ruby/object:Gem::Requirement
118
+ requirements:
119
+ - - ">="
120
+ - !ruby/object:Gem::Version
121
+ version: '0'
122
+ requirements: []
123
+ rubygems_version: 3.4.2
124
+ signing_key:
125
+ specification_version: 4
126
+ summary: A Ruby gem that implements a Business Rule Management System (BRMS) using
127
+ the Rete algorithm
128
+ test_files: []