forked from Quick/Quick
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQuick.podspec
More file actions
Latest commit
22 lines (17 loc) · 760 Bytes
/
Copy pathQuick.podspec
File metadata and controls
22 lines (17 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.newdo |s|
s.name="Quick"
s.version="0.3.0"
s.summary="The Swift (and Objective-C) testing framework."
s.description=<<-DESC
Quick is a behavior-driven development framework for Swift and Objective-C. Inspired by RSpec, Specta, and Ginkgo.
DESC
s.homepage="https://github.com/Quick/Quick"
s.license={:type=>"Apache 2.0",:file=>"LICENSE"}
s.author="Quick Contributors"
s.ios.deployment_target="8.0"
s.osx.deployment_target="10.10"
s.source={:git=>"https://github.com/Quick/Quick.git",:tag=>"v#{s.version}"}
s.source_files="Quick","Quick/**/*.{swift,h,m}"
s.framework="XCTest"
s.requires_arc=true
end