-
Notifications
You must be signed in to change notification settings - Fork 8
/
Haystack.podspec
20 lines (16 loc) · 958 Bytes
/
Haystack.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "Haystack"
s.version = "0.9.6"
s.summary = "A collection of simple iOS classes and categories that fit in almost every project."
s.description = <<-DESC
Haystack SDK contains a collection of simple iOS classes and small libraries that fit in almost every project. Most of these classes are not large or structured enough to fit in a special library or framework, but are regurarely needed throughout the most projects you are working on.
DESC
s.homepage = "http://github.com/Legoless/Haystack"
s.license = 'MIT'
s.author = { "Dal Rupnik" => "[email protected]" }
s.platform = :ios, '8.0'
s.source = { :git => "https://github.com/Legoless/Haystack.git", :tag => s.version }
s.frameworks = 'CoreText'
s.source_files = 'SDK/Categories/**/*.{h,m}', 'SDK/Classes/**/*.{h,m}', 'SDK/Haystack.h'
s.requires_arc = true
end