-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathJSPatchPlatform.podspec
More file actions
28 lines (22 loc) · 860 Bytes
/
Copy pathJSPatchPlatform.podspec
File metadata and controls
28 lines (22 loc) · 860 Bytes
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
Pod::Spec.new do |s|
s.name = "JSPatchPlatform"
s.version = "1.6.6"
s.summary = "jspatch.com SDK"
s.license = { :type => "MIT", :file => "LICENSE" }
s.homepage = "http://jspatch.com"
s.author = { "bang590" => "bang590@gmail.com" }
s.social_media_url = "http://twitter.com/bang590"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/bang590/JSPatchPlatform.git",
:tag => s.version,
}
s.frameworks = "Foundation", "JavaScriptCore"
s.libraries = "z"
s.default_subspec = "Core"
s.pod_target_xcconfig = { 'OTHER_LDFLAGS' => '-ObjC' }
s.subspec "Core" do |ss|
ss.vendored_frameworks = "JSPatchPlatform.framework"
ss.source_files = "JSPatchPlatform.framework/Headers/*.h"
ss.dependency 'JSPatch'
end
end