-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFIXiT.podspec
31 lines (27 loc) · 1.21 KB
/
FIXiT.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
#
# Be sure to run `pod lib lint FIXIT.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'FIXiT'
s.version = '0.1.0'
s.summary = 'Yet another Javascript fixing solution.'
s.description = <<-DESC
A Javascript Proxy Object based hotfix solution for Objective-C. With the power
of KVC, your may access and update Objective-C class members at runtime.
Simple to use and integrate. You can write your js code in a more natural way.
DESC
s.homepage = 'https://github.com/rickytan/FIXiT'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'rickytan' => 'ricky.tan.xin@gmail.com' }
s.source = { :git => 'https://github.com/rickytan/FIXiT.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'FIXiT/Classes/**/*'
s.resource = 'FIXiT/Assets/FIXiT.bundle'
s.public_header_files = 'FIXiT/Classes/**/FIXiT.h'
s.frameworks = 'Foundation', 'JavaScriptCore'
s.libraries = 'c++'
end