[Delete] FluentAdFlowAdsWidget 2.0.0
[CocoaPods.git] / Specs / f / a / e / SwiftyMocky / 3.2.0 / SwiftyMocky.podspec.json
blob801d99d531744addb9efec0042e4d934fdb241fa
2   "name": "SwiftyMocky",
3   "version": "3.2.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.2.0"
19   },
20   "platforms": {
21     "ios": "8.0",
22     "tvos": "9.0",
23     "osx": "10.10"
24   },
25   "default_subspecs": "Core",
26   "preserve_paths": "*",
27   "swift_version": "4.0",
28   "subspecs": [
29     {
30       "name": "Core",
31       "source_files": "Sources/Classes/**/*",
32       "resources": "{Sources/Templates/*,get_sourcery.sh}",
33       "xcconfig": {
34         "OTHER_SWIFT_FLAGS": "-DMocky"
35       },
36       "frameworks": "Foundation",
37       "weak_frameworks": "XCTest",
38       "dependencies": {
39         "Sourcery": [
40           "> 0.16"
41         ]
42       },
43       "pod_target_xcconfig": {
44         "APPLICATION_EXTENSION_API_ONLY": "YES",
45         "ENABLE_BITCODE": "NO",
46         "OTHER_LDFLAGS": "$(inherited) -weak-lswiftXCTest -Xlinker -no_application_extension",
47         "OTHER_SWIFT_FLAGS": "$(inherited) -suppress-warnings",
48         "FRAMEWORK_SEARCH_PATHS": "$(inherited) \"$(PLATFORM_DIR)/Developer/Library/Frameworks\"",
49         "DEFINES_MODULE": "YES"
50       },
51       "user_target_xcconfig": {
52         "FRAMEWORK_SEARCH_PATHS": "$(PLATFORM_DIR)/Developer/Library/Frameworks"
53       }
54     },
55     {
56       "name": "StaticLibrary",
57       "dependencies": {
58         "SwiftyMocky/Core": [
60         ]
61       },
62       "exclude_files": [
63         "Sources/Classes/MockySetup.{h,m}"
64       ]
65     },
66     {
67       "name": "Custom",
68       "source_files": "Sources/Classes/**/*",
69       "exclude_files": [
70         "Sources/Classes/CustomAssertions.swift",
71         "Sources/Classes/SwiftyMockyTestObserver.swift",
72         "Sources/Classes/MockySetup.{h,m}"
73       ],
74       "resources": "{Sources/Templates/*,get_sourcery.sh}",
75       "xcconfig": {
76         "OTHER_SWIFT_FLAGS": "-DMockyCustom"
77       },
78       "frameworks": "Foundation",
79       "dependencies": {
80         "Sourcery": [
82         ]
83       }
84     },
85     {
86       "name": "Prototyping",
87       "source_files": "Sources/Classes/**/*",
88       "exclude_files": [
89         "Sources/Classes/CustomAssertions.swift",
90         "Sources/Classes/SwiftyMockyTestObserver.swift",
91         "Sources/Classes/MockySetup.{h,m}"
92       ],
93       "resources": "{Sources/Templates/*,get_sourcery.sh}",
94       "xcconfig": {
95         "OTHER_SWIFT_FLAGS": "-DMockyCustom"
96       },
97       "frameworks": "Foundation",
98       "dependencies": {
99         "Sourcery": [
101         ]
102       }
103     }
104   ]