-
Notifications
You must be signed in to change notification settings - Fork 1
/
DesignTokens.podspec
30 lines (24 loc) · 1020 Bytes
/
DesignTokens.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
Pod::Spec.new do |s|
s.name = 'DesignTokens'
s.version = '1.0.0'
s.author = { 'Carlos Castro' => '[email protected]' }
s.summary = 'Podspec for Design Tokens'
s.homepage = 'https://github.com/davixyz/design-tokens'
s.platform = :ios, "10.0"
s.description = <<-DESC
Design Tokens for iOS applications
DESC
s.swift_version = '4.2'
s.frameworks = 'UIKit'
# Location ##########
s.source = { :git => 'https://github.com/davixyz/design-tokens.git', :tag => s.version.to_s }
# Contents ###########
#Local podspecs start
s.source_files = ['build/ios/**/*.swift']
s.resource_bundle = { 'DesignTokensBundle' => 'build/ios/**/*.{storyboard,xib,xcassets,json,imageset,png,pdf,lproj,otf,ttf}' }
#Local podspecs end
#Remote podspecs template start
#s.vendored_frameworks = 'DesignTokens.framework'
#s.preserve_paths = 'DesignTokens.framework/*'
#Remote podspecs template end
end