forked from twitter-archive/CocoaSPDY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.podspec.erb
32 lines (25 loc) · 1.06 KB
/
.podspec.erb
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
##
# DO NOT MODIFY THIS FILE. IT IS A AUTO-GENERATED BY `rake release`
# Make modifications to `.podspec.erb` instead.
##
Pod::Spec.new do |s|
s.name = "<%= name %>"
s.version = "<%= version %>"
s.summary = "SPDY for iOS and OS X"
s.description = <<-DESC
The SPDY framework is designed to work seamlessly with your existing apps and projects.
If you are using the NSURL stack to issue requests (or any library that provides an abstraction over it),
you can simply add the pod your project.
DESC
s.homepage = "https://github.com/layerhq/CocoaSPDY"
s.license = 'Apache'
s.author = { "Twitter, Inc." => "opensource@twitter.com" }
s.source = { :git => 'https://github.com/layerhq/CocoaSPDY.git', :tag => "<%= tag %>"}
s.ios.deployment_target = '5.0'
s.osx.deployment_target = '10.7'
s.header_dir = 'CocoaSPDY'
s.source_files = "SPDY/**/*.{h,m}"
s.requires_arc = true
s.frameworks = 'CFNetwork'
s.libraries = 'z'
end