-
Notifications
You must be signed in to change notification settings - Fork 23
/
Ribbon.podspec
39 lines (21 loc) · 2.09 KB
/
Ribbon.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
34
35
36
37
38
39
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = 'Ribbon'
s.version = '1.1'
s.summary = '🎀 A simple cross-platform toolbar/custom input accessory view library for iOS & macOS. Written in Swift.'
s.homepage = 'https://github.com/chriszielinski/Ribbon'
s.screenshots = 'https://raw.githubusercontent.com/chriszielinski/Ribbon/master/.readme-assets/header.jpg'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { 'chriszielinski' => '[email protected]' }
s.social_media_url = 'https://twitter.com/mightbesuperman'
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = '10.0'
s.osx.deployment_target = '10.12'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/chriszielinski/Ribbon.git', :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = 'Ribbon/**/*.swift'
s.swift_version = "5"
end