Files
react-native-pushy/react-native-pushy.podspec
Zhigang Fang 7b511cb794 Update lib
2016-09-09 02:10:47 +08:00

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