forked from bang590/JSPatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
JSPatch.podspec
33 lines (27 loc) · 1.34 KB
/
JSPatch.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
27
28
29
30
31
32
33
Pod::Spec.new do |s|
s.name = "JSPatch"
s.version = "0.0.1"
s.summary = "JSPatch bridge Objective-C and JavaScript. You can call any" \
" Objective-C class and method in JavaScript by just" \
" including a small engine."
s.description = <<-DESC
JSPatch bridge Objective-C and JavaScript using the
Objective-C runtime. You can call any Objective-C class and
method in JavaScript by just including a small engine.
That makes the APP obtain the power of script language:
add modules or replacing Objective-C codes to
fix bugs dynamically.
JSPatch is still in development,
welcome to improve the project together.
DESC
s.homepage = "https://github.com/bang590/JSPatch"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "bang" => "[email protected]" }
s.social_media_url = "http://twitter.com/bang590"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/bang590/JSPatch.git", :tag => s.version }
s.source_files = "JSPatch/*.{h,m}"
s.public_header_files = "JSPatch/*.h"
s.resources = "JSPatch/*.js"
s.frameworks = "JavaScriptCore", "Foundation"
end