-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRevoForms.podspec
More file actions
49 lines (31 loc) · 2.93 KB
/
RevoForms.podspec
File metadata and controls
49 lines (31 loc) · 2.93 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
# EXAMPLE / TUTORIAL: https://www.raywenderlich.com/5823-how-to-create-a-cocoapod-in-swift
Pod::Spec.new do |spec|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.name = "RevoForms"
spec.version = "0.0.7"
spec.summary = "A library to easily create forms"
spec.description = "A simple library to easily create forms with a fluent syntax"
spec.homepage = "https://revo.works"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.license = "MIT"
spec.swift_version = "5.0"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.author = { "Jordi Puigdellívol" => "jordi@gloobus.net" }
spec.social_media_url = "https://instagram.com/badchoice2"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.platform = :ios, "11.3"
spec.static_framework = true
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source = { :git => "https://github.com/revosystems/revoforms.git", :tag => "0.0.7" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
spec.source_files = "forms/lib/**/*.{swift,h}"#, "src/**/*.{h,m}"
#spec.public_header_files = "forms/src/**/*.{h}"
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#spec.resources = "printers/resources/**/*"
# ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#spec.xcconfig = { 'OTHER_SWIFT_FLAGS' => '-Xcc -Wno-error=non-modular-include-in-framework-module'}
#spec.pod_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
#spec.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
spec.dependency 'RevoValidation', '~> 1.0.0'
end