-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathSwiftyInAppMessaging.podspec
41 lines (31 loc) · 1.7 KB
/
SwiftyInAppMessaging.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
#
# Be sure to run `pod spec lint SwiftyInAppMessaging.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 = "SwiftyInAppMessaging"
spec.version = "2.0.0"
spec.summary = "The easiest way to use your customized view and In-App Messaging's default view."
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
spec.description = <<-DESC
SwiftyInAppMessaging makes Firebase In-App Messaging easy to use with your customized view and In-App Messaging's default view.
DESC
spec.homepage = "https://github.com/fumito-ito/SwiftyInAppMessaging"
spec.license = { :type => "Apache2", :file => "LICENSE" }
spec.author = { "Fumito Ito" => "weathercook@gmail.com" }
spec.social_media_url = "https://twitter.com/fumito_ito"
spec.ios.deployment_target = "12.0"
spec.source = { :git => "https://github.com/fumito-ito/SwiftyInAppMessaging.git", :tag => "#{spec.version}" }
spec.source_files = "Sources", "Sources/**/*.{h,m,swift}"
# spec.requires_arc = true
spec.static_framework = true
spec.swift_version = '5.3'
spec.dependency "Firebase/InAppMessaging", "~> 11.0.0-beta"
end