forked from bryanjclark/SwiftTweaks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SwiftTweaks.podspec
25 lines (17 loc) · 1000 Bytes
/
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
Pod::Spec.new do |s|
s.name = "SwiftTweaks"
s.version = "3.0"
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://twitter.com/khanacademy"
# s.platform = :ios, "8.0"
s.ios.deployment_target = 8.0
s.source = { :git => "https://github.com/Khan/SwiftTweaks.git", :tag => "v3.0", :submodules => true }
s.source_files = "SwiftTweaks/**/*.swift"
s.resources = "SwiftTweaks/*.xcassets"
s.ios.framework = 'UIKit'
end