-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMangaDexLib.podspec
28 lines (24 loc) · 1.23 KB
/
MangaDexLib.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
#
# Be sure to run `pod spec lint MangaDexLib.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 = "MangaDexLib"
spec.version = "0.5-beta-2"
spec.summary = "Cross-platform Swift framework to interact with the MangaDex website."
spec.description = <<-DESC
MangaDexLib is a cross-platform Swift framework to interact with the MangaDex website. Its goal is to offer a robust abstract interface to access the website's core features.
DESC
spec.homepage = "https://github.com/JRomainG/MangaDexLib"
spec.license = { :type => "GPLv3", :file => "LICENSE" }
spec.author = "Jean-Romain Garnier"
spec.source = { :git => "https://github.com/JRomainG/MangaDexLib.git", :tag => "v" + spec.version.to_s }
spec.ios.deployment_target = "12.0"
spec.osx.deployment_target = "10.12"
spec.source_files = "Sources/**/*.swift"
spec.swift_versions = ["5.0", "5.1", "5.2"]
spec.framework = "WebKit"
end