mirror of
https://github.com/zhigang1992/react-native-pushy.git
synced 2026-01-12 22:50:46 +08:00
19 lines
639 B
Ruby
19 lines
639 B
Ruby
require 'json'
|
|
version = JSON.parse(File.read('package.json'))["version"]
|
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = "react-native-pushy"
|
|
s.version = version
|
|
s.summary = "React Native Hot Update"
|
|
s.homepage = "https://github.com/reactnativecn/react-native-pushy"
|
|
s.license = "MIT"
|
|
s.author = { "reactnativecn" => "reactnativecn@reactnative.cn" }
|
|
s.platform = :ios, "7.0"
|
|
s.source = { :git => "https://github.com/zhigang1992/react-native-pushy.git", :tag => s.version }
|
|
s.source_files = 'ios/**/*.{h,m,c}'
|
|
s.library = ['z', 'bz2.1.0']
|
|
s.dependency 'React'
|
|
|
|
end
|