-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathPaintCodeKit.podspec
More file actions
51 lines (33 loc) · 3.01 KB
/
PaintCodeKit.podspec
File metadata and controls
51 lines (33 loc) · 3.01 KB
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
#
# Be sure to run `pod lib lint PaintCodeKit.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.platform = :ios
s.ios.deployment_target = '10.0'
s.name = 'PaintCodeKit'
s.summary = 'PaintCode turn your images into Swift code, PaintCodeKit helps you to add them in your views!'
s.description = 'PaintCodeKit manage your converted images in PaintCode. You will be able to use your images directly in the views using extensions with correct sizes. Use it to maintain your code clean! '
s.version = '1.0.0'
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = { :type => 'MIT', :file => 'LICENSE' }
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { 'Alberto Aznar' => 'info@alberdev.com' }
s.homepage = 'https://github.com/alberdev/PaintCodeKit'
s.social_media_url = 'https://twitter.com/alberdev'
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => 'https://github.com/alberdev/PaintCodeKit.git', :tag => s.version.to_s }
# ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.framework = 'UIKit'
# s.dependency 'AFNetworking', '~> 2.3'
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = 'PaintCodeKit/**/*'
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
# s.resources = 'PaintCodeKit/Resources/**/*.{png,jpeg,jpg,storyboard,xib,xcassets}'
# ――― Swift Version ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.swift_version = '5.0'
end