-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCityPopup.podspec
42 lines (36 loc) · 1.73 KB
/
CityPopup.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
32
33
34
35
36
37
38
39
40
41
42
Pod::Spec.new do |spec|
spec.name = "CityPopup"
spec.version = "0.7"
spec.summary = "A popup display engine framework for iOS and iPadOS."
spec.description = <<-DESC
CityPopup is a framework for iOS and iPadOS that is a popup display engine written in Swift.
We at Citymobil have developed the logic that is used in our project and decided that it can help not only us.
It takes care of all necessary logic to display views within your app easily.
This framework is suitable both for those who just need to show some information, and for those who want to implement non-standard animation along with a complex view, as it is highly customizable.
DESC
spec.homepage = "https://github.com/city-mobil/CityPopup"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = {
"Pavel Chilimov" => "chilimovpasha@gmail.com",
"Georgiy Sabanov" => "georgi.sabano@yandex.ru",
"Stanislav Svorovsky" => "svorovsky@ya.ru"
}
spec.platform = :ios
spec.ios.deployment_target = "9.0"
spec.swift_version = "5.3"
spec.source = { :git => "https://github.com/city-mobil/CityPopup.git", :tag => spec.version.to_s }
spec.framework = "UIKit"
spec.requires_arc = true
spec.default_subspec = "Core"
spec.subspec "Core" do |core|
core.source_files = "CityPopup/Core/**/*.{swift}"
end
spec.subspec "Toast" do |toast|
toast.source_files = "CityPopup/Toast/**/*.{swift}"
toast.dependency "CityPopup/Core"
end
spec.subspec "Alert" do |alert|
alert.source_files = "CityPopup/Alert/**/*.{swift}"
alert.dependency "CityPopup/Core"
end
end