forked from spotify/HubFramework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HubFramework.podspec
32 lines (26 loc) · 1.23 KB
/
HubFramework.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
Pod::Spec.new do |s|
s.name = "HubFramework"
s.version = "2.0.7"
s.summary = "Spotify's component-driven UI framework for iOS"
s.description = <<-DESC
The Hub Framework is a toolkit for building native,
component-driven UIs on iOS. It is designed to enable
teams of any size to quickly build, tweak and ship new
UI features, in either new or existing apps. It also
makes it easy to build backend-driven UIs.
DESC
s.ios.deployment_target = "8.0"
s.homepage = "https://github.com/spotify/HubFramework"
s.social_media_url = "https://twitter.com/spotifyeng"
s.license = "Apache 2.0"
s.author = {
"John Sundell" => "josu@spotify.com"
}
s.source = { :git => "https://github.com/spotify/HubFramework.git", :tag => s.version }
s.source_files = "include/HubFramework/*.h", "sources/*.{h,m}"
s.public_header_files = "include/HubFramework/*.h"
s.frameworks = "UIKit", "SystemConfiguration"
s.xcconfig = {
"OTHER_LDFLAGS" => "-lObjC"
}
end