-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBaltoSDK.podspec
26 lines (21 loc) · 1.05 KB
/
BaltoSDK.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
Pod::Spec.new do |s|
s.name = "BaltoSDK"
s.version = "4.1.1"
s.summary = "Balto iOS SDK."
s.description = <<-DESC
Balto lets you leave feadback with a simple swipe on the screen.
Send design fixes or new ideas to the developer right away.
https://www.balto.io/
DESC
s.homepage = "https://github.com/goodpatch/BaltoSDK"
s.license = { :type => "Apache 2.0", :file => "LICENSE" }
s.author = { "Hiroki Terashima" => "[email protected]" }
s.platform = :ios, "9.0"
s.requires_arc = true
# s.source = { :http => "https://github.com/goodpatch/BaltoSDK/releases/download/#{s.version}/Cocoapods.zip" }
s.source = { :git => "https://github.com/goodpatch/BaltoSDK.git", :tag => "#{s.version}" }
s.preserve_paths = 'BaltoSDK.framework'
s.source_files = 'BaltoSDK.framework/Headers/BaltoSDK-Swift.h'
s.public_header_files = 'BaltoSDK.framework/Headers/BaltoSDK-Swift.h'
s.vendored_frameworks = 'BaltoSDK.framework'
end