[Add] RongCloudRTC 5.12.0
[CocoaPods.git] / Specs / e / 7 / f / Locatable / 0.3 / Locatable.podspec.json
blob548f12d9f02f45cfcdbbe4e30350f66460860353
2   "name": "Locatable",
3   "version": "0.3",
4   "summary": "Locatable is a micro framework that leverages Property Wrappers to implement the Service Locator pattern, through a custom attribute @Locatable",
5   "description": "Locatable is a Swift micro framework that leverages Property Wrappers to implement the Service Locator pattern, through a custom attribute `@Locatable`.\n\nHere's an example of how it can be used:\n\nprotocol Servicing {\n    func action()\n}\n\nclass Service: Servicing {\n    func action() {\n        print(\"I'm performing a service ðŸ˜Š\")\n    }\n}\n\nLocator.register(Servicing.self, { return Service() })\n\nclass MyController {\n    @Locatable var service: Servicing\n    \n    func work() {\n        self.service.action()\n    }\n}\n\nlet controller = MyController()\n\ncontroller.work() // I'm performing a service ðŸ˜Š",
6   "homepage": "https://github.com/vincent-pradeilles/locatable",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Vincent Pradeilles": "vin.pradeilles+locatable@gmail.com"
13   },
14   "source": {
15     "git": "https://github.com/vincent-pradeilles/locatable.git",
16     "tag": "0.3"
17   },
18   "swift_versions": "5.1",
19   "platforms": {
20     "ios": "9.0"
21   },
22   "frameworks": "Foundation",
23   "source_files": "Locatable/Locatable/**/*.swift",
24   "swift_version": "5.1"