forked from tokopedia/ios-tptweak
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTPTweak.podspec
More file actions
20 lines (17 loc) · 855 Bytes
/
Copy pathTPTweak.podspec
File metadata and controls
20 lines (17 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |spec|
spec.name = "TPTweak"
spec.version = "4.1.0"
spec.summary = "TPTweak is a debugging tool to help adjust your iOS app on the fly without recompile"
spec.license = { :type => "Apache 2.0", :file => "LICENSE.md" }
spec.author = { "Wendy Liga" => "me@wendyliga.com",
"Wendy Liga tokopedia" => "wendy.liga@tokopedia.com" }
spec.homepage = "https://github.com/tokopedia/ios-tptweak"
spec.platform = :ios, "11.0"
spec.swift_versions = ["5.4"]
spec.source = { :git => "https://github.com/wendyliga/ios-tptweak.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/TPTweak/**/*.swift"
spec.default_subspec = "Core"
spec.subspec 'Core' do |ss|
ss.source_files = "Sources/TPTweak/"
end
end