[Add] TMNavigation 0.0.947
[CocoaPods.git] / Specs / f / a / e / SwiftyMocky / 3.1.0 / SwiftyMocky.podspec.json
blobd78f82d19a24ca08a6abc5baa68e4da616fd68f2
2   "name": "SwiftyMocky",
3   "version": "3.1.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.1.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   "subspecs": [
28     {
29       "name": "Core",
30       "source_files": "Sources/Classes/**/*",
31       "resources": "{Sources/Templates/*,get_sourcery.sh}",
32       "xcconfig": {
33         "OTHER_SWIFT_FLAGS": "-DMocky"
34       },
35       "frameworks": "Foundation",
36       "weak_frameworks": "XCTest",
37       "dependencies": {
38         "Sourcery": [
40         ]
41       },
42       "pod_target_xcconfig": {
43         "APPLICATION_EXTENSION_API_ONLY": "YES",
44         "ENABLE_BITCODE": "NO",
45         "OTHER_LDFLAGS": "$(inherited) -weak-lswiftXCTest -Xlinker -no_application_extension",
46         "OTHER_SWIFT_FLAGS": "$(inherited) -suppress-warnings",
47         "FRAMEWORK_SEARCH_PATHS": "$(inherited) \"$(PLATFORM_DIR)/Developer/Library/Frameworks\""
48       }
49     },
50     {
51       "name": "Custom",
52       "source_files": "Sources/Classes/**/*",
53       "exclude_files": [
54         "Sources/Classes/CustomAssertions.swift"
55       ],
56       "resources": "{Sources/Templates/*,get_sourcery.sh}",
57       "xcconfig": {
58         "OTHER_SWIFT_FLAGS": "-DMockyCustom"
59       },
60       "frameworks": "Foundation",
61       "dependencies": {
62         "Sourcery": [
64         ]
65       }
66     }
67   ]