mirror of
https://github.com/zhigang1992/react-native-wechat-1.git
synced 2026-01-12 17:43:04 +08:00
20 lines
688 B
Ruby
20 lines
688 B
Ruby
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'RNWechat'
|
|
s.version = package['version']
|
|
s.summary = package['description']
|
|
s.description = package['description']
|
|
s.license = package['license']
|
|
s.author = { package['author'] => 'g592842897@gmail.com' }
|
|
s.homepage = package['homepage']
|
|
s.source = { :git => package['repository']['url'], :tag => package['version'] }
|
|
|
|
s.requires_arc = true
|
|
s.platform = :ios, '8.0'
|
|
s.source_files = 'ios/RNWechat.{h,m}', 'ios/Handler/*.{h,m}', 'ios/Helper/*.{h,m}'
|
|
s.dependency 'WechatOpenSDK', '= 1.8.2'
|
|
end
|