This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSylvester.podspec
56 lines (33 loc) Β· 2.62 KB
/
Sylvester.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
44
45
46
47
48
49
50
51
52
53
54
55
56
Pod::Spec.new do |s|
# βββ Spec Metadata ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.name = 'Sylvester'
s.version = '1.1'
s.summary = 'πΌ A type-safe, XPC-available SourceKitten (SourceKit) interface with some sugar.'
s.homepage = 'https://github.com/chriszielinski/Sylvester'
s.screenshots = 'https://raw.githubusercontent.com/chriszielinski/Sylvester/master/.readme-assets/header.png'
# βββ Spec License βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# βββ Author Metadata βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.author = { 'chriszielinski' => 'chrisz@berkeley.edu' }
s.social_media_url = 'http://twitter.com/mightbesuperman'
# βββ Platform Specifics βββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.platform = :osx, '10.12'
# βββ Source Location ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.source = { :git => 'https://github.com/chriszielinski/Sylvester.git', :tag => s.version.to_s }
# βββ Source Code ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.swift_version = "4.2"
# βββ Dependencies βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ #
s.default_subspec = 'Sylvester'
s.dependency 'SourceKittenFramework'
# s.subspec 'SylvesterXPC' do |xpc|
# xpc.source_files = 'Source/**/*.swift'
# xpc.dependency 'Sylvester/SylvesterCommon'
# end
s.subspec 'Sylvester' do |core|
core.source_files = 'Source/**/*.swift'
core.dependency 'Sylvester/SylvesterCommon'
end
s.subspec 'SylvesterCommon' do |common|
common.source_files = 'SylvesterCommon/**/*.swift'
end
end