-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMockInject.podspec
More file actions
32 lines (31 loc) · 1.28 KB
/
MockInject.podspec
File metadata and controls
32 lines (31 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
Pod::Spec.new do |s|
s.name = "MockInject"
s.version = "1.0.3"
s.summary = "A library that allows developers to globally mock any ObjectiveC class' initialization method when testing with Kiwi."
s.homepage = "https://github.com/gantaa/MockInject"
s.license = { :type => 'MIT', :file => 'MIT-LICENSE.txt' }
s.author = { "Matt Ganski" => "gantasygames@gmail.com" }
s.source = { :git => "https://github.com/gantaa/MockInject.git", :tag => "#{s.version}" }
s.platform = :ios, '6.0'
s.source_files = 'MockInject', 'MockInject/**/*.{h,m}'
s.framework = 'XCTest'
s.public_header_files = 'MockInject/**/*.h'
s.requires_arc = true
s.dependency 'Kiwi'
# TODO: clean this up once Apple gets their stuff together
s.ios.xcconfig = {
"FRAMEWORK_SEARCH_PATHS" => %w[
$(SDKROOT)/Developer/Library/Frameworks
$(inherited)
$(DEVELOPER_FRAMEWORKS_DIR)
].join(' '),
"FRAMEWORK_SEARCH_PATHS[sdk=iphoneos8.0]" => %w[
$(inherited)
$(DEVELOPER_DIR)/Platforms/iPhoneOS.platform/Developer/Library/Frameworks
].join(' '),
"FRAMEWORK_SEARCH_PATHS[sdk=iphonesimulator8.0]" => %w[
$(inherited)
$(DEVELOPER_DIR)/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks
].join(' '),
}
end