-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathEnlighten.podspec
43 lines (23 loc) · 2.31 KB
/
Enlighten.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
40
41
42
43
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = 'Enlighten'
s.version = '1.0'
s.summary = '💡 An integrated spotlight-based onboarding and help library for macOS, written in Swift.'
s.homepage = 'https://github.com/chriszielinski/Enlighten'
s.screenshots = 'https://raw.githubusercontent.com/chriszielinski/Enlighten/master/readme-assets/gifs/enlighten.gif'
s.documentation_url = 'https://chriszielinski.github.io/Enlighten/'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { 'chriszielinski' => '[email protected]' }
s.social_media_url = 'http://twitter.com/mightbesuperman'
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :osx, '10.12'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/chriszielinski/Enlighten.git', :tag => s.version.to_s }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = 'Source/**/*.swift'
s.swift_version = "4.2"
# ――― Dependencies ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.dependency 'Down'
end