forked from jumperb/Hodor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hodor.podspec
33 lines (22 loc) · 1.02 KB
/
Hodor.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
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "Hodor"
s.version = "1.9.1"
s.summary = "A short description of Hodor."
s.description = <<-DESC
A longer description of Hodor in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/jumperb/Hodor"
s.license = "Copyright"
s.author = { "jumperb" => "[email protected]" }
s.source = { :git => "https://github.com/jumperb/Hodor.git", :tag => s.version.to_s}
s.source_files = 'Classes/**/*.{h,m}'
s.prefix_header_contents = '#import "HCommon.h"'
s.libraries = 'z'
s.framework = 'Accelerate'
s.requires_arc = true
s.ios.deployment_target = '6.0'
end