├── .github ├── CODEOWNERS └── FUNDING.yml ├── .gitignore ├── LICENSE ├── Package.swift ├── Package@swift-5.9.swift ├── README.md ├── Sources └── RuleKit │ ├── Center.swift │ ├── Donation.swift │ ├── Event.swift │ ├── Option.swift │ ├── Rule.swift │ ├── Store.swift │ ├── Trigger.swift │ └── Version.swift └── Tests └── RuleKitTests └── RuleKitTests.swift /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [Dean151] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Package.swift -------------------------------------------------------------------------------- /Package@swift-5.9.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Package@swift-5.9.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/README.md -------------------------------------------------------------------------------- /Sources/RuleKit/Center.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Center.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Donation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Donation.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Event.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Event.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Option.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Option.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Rule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Rule.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Store.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Store.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Trigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Trigger.swift -------------------------------------------------------------------------------- /Sources/RuleKit/Version.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Sources/RuleKit/Version.swift -------------------------------------------------------------------------------- /Tests/RuleKitTests/RuleKitTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dean151/RuleKit/HEAD/Tests/RuleKitTests/RuleKitTests.swift --------------------------------------------------------------------------------