forked from youviewtv/json-rpc-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJRPCProxy.podspec
25 lines (19 loc) · 1.03 KB
/
JRPCProxy.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 = 'JRPCProxy'
s.version = '1.1.2'
s.summary = 'JSON-RPC 2.0 proxy for Swift & Objective-C protocols.'
s.description = <<-DESC
JSON-RPC 2.0 proxy for Swift & Objective-C protocols.
Allows you to write your RPC function declarations in Swift or Objective-C using native types.
The proxy will create the JSON-RPC request payload object,
and convert the JSON-RPC response into a callback via a block/closure,
marshalling all parameter and return types between Objective-C/Swift & JSON automagically.
DESC
s.homepage = 'https://github.com/neildavis/json-rpc-proxy/'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Neil Davis' => '[email protected]' }
s.source = { :git => 'https://github.com/neildavis/json-rpc-proxy.git', :tag => s.version.to_s }
s.ios.deployment_target = '12.0'
s.source_files = 'JRPCProxy/JRPCProxy/*.{h,m}'
s.public_header_files = 'JRPCProxy/JRPCProxy/*.h'
end