-
Notifications
You must be signed in to change notification settings - Fork 142
/
SwiftTweaks.podspec
26 lines (17 loc) · 1.02 KB
/
SwiftTweaks.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 = "SwiftTweaks"
s.version = "4.1.2"
s.summary = "Tweak your Swift-based app on-device."
s.description = "SwiftTweaks is a way to adjust your Swift-based iOS app on-device without needing to recompile. Read more about it on our blog: http://engineering.khanacademy.org/posts/introducing-swifttweaks.htm"
s.homepage = "https://github.com/Khan/SwiftTweaks"
s.screenshots = "https://raw.githubusercontent.com/Khan/SwiftTweaks/master/Images/SwiftTweaks%20Overview.png"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = "Khan Academy", "Bryan Clark"
s.social_media_url = "https://www.twitter.com/khanacademy"
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/Khan/SwiftTweaks.git", :tag => "v4.1.2", :submodules => true }
s.source_files = "SwiftTweaks/**/*.swift"
s.resource_bundles = { 'SwiftTweaks' => ['SwiftTweaks/Media.xcassets/**/*'] }
s.swift_version = "5.0"
s.ios.framework = 'UIKit'
end