-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCatchingFire.podspec
27 lines (24 loc) · 1.2 KB
/
CatchingFire.podspec
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
Pod::Spec.new do |s|
s.name = 'CatchingFire'
project = Xcodeproj::Project.open('CatchingFire.xcodeproj')
target = project.targets.first
version = target.build_settings('Debug')['CURRENT_PROJECT_VERSION']
s.version = version
s.summary = 'XCTest-style expecters to test Swift error-handling'
s.description = <<-eos
CatchingFire is a Swift test framework, which helps making expectations against the error
handling of your code. It integrates seamlessly with the expecters provided by `XCTest`.
eos
s.homepage = 'https://github.com/mrackwitz/CatchingFire'
s.social_media_url = 'https://twitter.com/mrackwitz'
s.author = { 'Marius Rackwitz' => 'git@mariusrackwitz.de' }
s.license = 'MIT License'
s.source = { :git => 'https://github.com/mrackwitz/CatchingFire.git', :tag => s.version.to_s }
s.source_files = 'src/CatchingFire.swift'
s.frameworks = 'XCTest'
s.pod_target_xcconfig = {
"FRAMEWORK_SEARCH_PATHS" => "$(inherited) '$(PLATFORM_DIR)/Developer/Library/Frameworks'"
}
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.9'
end