[Add] FaceSDKNightly 6.4.2314
[CocoaPods.git] / Specs / f / a / e / SwiftyMocky / 3.5.0 / SwiftyMocky.podspec.json
blobddfdaef88f64dca9109a905130a6aec81cb3230e
2   "name": "SwiftyMocky",
3   "version": "3.5.0",
4   "summary": "Unit testing library for Swift, with mock generation. Adds a set of handy methods, simplifying testing.",
5   "description": "Library that uses metaprogramming technique to generate mocks based on sources, that makes testing for Swift Mockito-like.",
6   "homepage": "https://github.com/MakeAWishFoundation/SwiftyMocky",
7   "screenshots": "https://raw.githubusercontent.com/MakeAWishFoundation/SwiftyMocky/1.0.0/icon.png",
8   "license": {
9     "type": "MIT",
10     "file": "LICENSE"
11   },
12   "authors": {
13     "Przemysław Wośko": "przemyslaw.wosko@intive.com",
14     "Andrzej Michnia": "amichnia@gmail.com"
15   },
16   "source": {
17     "git": "https://github.com/MakeAWishFoundation/SwiftyMocky.git",
18     "tag": "3.5.0"
19   },
20   "swift_versions": [
21     "4.1",
22     "4.2",
23     "5.0",
24     "5.1.2"
25   ],
26   "platforms": {
27     "ios": "8.0",
28     "tvos": "9.0",
29     "osx": "10.10"
30   },
31   "default_subspecs": "Core",
32   "preserve_paths": "*",
33   "subspecs": [
34     {
35       "name": "Core",
36       "source_files": "Sources/Classes/**/*",
37       "resources": "{Sources/Templates/Mock.swifttemplate,get_sourcery.sh}",
38       "xcconfig": {
39         "OTHER_SWIFT_FLAGS": "-DMocky"
40       },
41       "frameworks": "Foundation",
42       "weak_frameworks": "XCTest",
43       "dependencies": {
44         "Sourcery": [
45           ">= 0.17"
46         ]
47       },
48       "pod_target_xcconfig": {
49         "APPLICATION_EXTENSION_API_ONLY": "YES",
50         "ENABLE_BITCODE": "NO",
51         "OTHER_LDFLAGS": "$(inherited) -weak-lswiftXCTest -Xlinker -no_application_extension",
52         "OTHER_SWIFT_FLAGS": "$(inherited) -suppress-warnings",
53         "FRAMEWORK_SEARCH_PATHS": "$(inherited) \"$(PLATFORM_DIR)/Developer/Library/Frameworks\"",
54         "DEFINES_MODULE": "YES"
55       },
56       "user_target_xcconfig": {
57         "FRAMEWORK_SEARCH_PATHS": "$(PLATFORM_DIR)/Developer/Library/Frameworks"
58       }
59     },
60     {
61       "name": "Prototyping",
62       "source_files": "Sources/Classes/**/*",
63       "resources": "{Sources/Templates/Mock.swifttemplate,get_sourcery.sh}",
64       "xcconfig": {
65         "OTHER_SWIFT_FLAGS": "-DMockyCustom"
66       },
67       "frameworks": "Foundation",
68       "dependencies": {
69         "Sourcery": [
71         ]
72       }
73     }
74   ],
75   "swift_version": "5.1.2"