-
Notifications
You must be signed in to change notification settings - Fork 77
/
Splitflap.podspec
23 lines (20 loc) · 1.04 KB
/
Splitflap.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'Splitflap'
s.version = '4.1.0'
s.license = 'MIT'
s.summary = 'A simple split-flap display for your Swift applications'
s.description = <<-DESC
Splitflap is a simple to use component to present changeable alphanumeric text like often used as a public transport timetable in airports or railway stations or with some flip clocks.
DESC
s.homepage = 'https://github.com/yannickl/Splitflap.git'
s.social_media_url = 'https://twitter.com/yannickloriot'
s.authors = { 'Yannick Loriot' => 'contact@yannickloriot.com' }
s.source = { :git => 'https://github.com/yannickl/Splitflap.git', :tag => s.version }
s.screenshot = 'http://yannickloriot.com/resources/splitflap-logo.gif'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.ios.frameworks = 'UIKit', 'QuartzCore'
s.tvos.frameworks = 'UIKit', 'QuartzCore'
s.source_files = 'Sources/*.swift'
s.requires_arc = true
end