[Add] VisualEffectBlurView 6.0.0
[CocoaPods.git] / Specs / 1 / f / 4 / Rules / 0.2.0 / Rules.podspec.json
blobd0fbc307a3fc87e10b5b01c4b9aab11aaf2d6b62
2   "name": "Rules",
3   "version": "0.2.0",
4   "summary": "A forward-chaining inference engine rule engine",
5   "description": "Rules provides a simple forward-chaining inference rule engine that is configurable at runtime.\n\nWhen you provide a set of _known facts_, and a set of _rules_, _inferred facts_ \ncan be determined.\n\nFor example:\n\n- _known fact_: the sky is blue\n- _rule_: if the sky is blue, then the weather is sunny\n- _inferrable fact_: the weather is sunny\n\nYou you make much more complicated rules than this, which are\nbased on more facts, even based on inferred facts.\n\nFor example:\n\n- _known fact_: the sky is blue\n- _known fact_: the season is summer\n- _rule_: if the sky is blue, then the weather is sunny\n- _rule_: if true, the beach is empty (this is a fallback rule)\n- _rule_: if the weather is sunny and the season is summer, then the beach is full\n- _inferred fact_: the beach is full\n\n- _known fact_: the season is autumn\n- _inferred fact_: the beach is empty\n\nRules can be specified using a simple textual format, and can be decoded from JSON\nto load into a `Brain`.",
6   "homepage": "https://github.com/JimRoepcke/Rules",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Jim Roepcke": "jim@roepcke.com"
13   },
14   "source": {
15     "git": "https://github.com/JimRoepcke/Rules.git",
16     "tag": "0.2.0"
17   },
18   "platforms": {
19     "ios": "9.0",
20     "tvos": "10.0",
21     "watchos": "2.0"
22   },
23   "swift_version": "4.2",
24   "source_files": "Rules/Sources/**/*"