-
Notifications
You must be signed in to change notification settings - Fork 9
/
SupportDocs.podspec
executable file
·31 lines (22 loc) · 1.17 KB
/
SupportDocs.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
#
# Be sure to run `pod spec lint SupportDocs.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = "SupportDocs"
spec.version = "1.1.0"
spec.summary = "Generate help centers for your iOS apps. Hosted by GitHub and always up-to-date."
spec.description = <<-DESC
All you need to do is write your documents on GitHub and install the library in your app. SupportDocs' custom GitHub Action and GitHub Pages will take care of the rest.
DESC
spec.homepage = "http://github.com/aheze/SupportDocs"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.authors = 'A. Zheng', 'H. Kamran'
spec.platform = :ios, "13.0"
spec.source = { :git => "https://github.com/aheze/SupportDocs.git", :tag => spec.version.to_s }
spec.source_files = "Sources/SupportDocs/**/*"
spec.swift_version = "5.3"
end