Update RNFS.podspec
This commit is contained in:
parent
01d43a011a
commit
202b4b19c3
24
RNFS.podspec
24
RNFS.podspec
|
@ -1,11 +1,19 @@
|
|||
require 'json'
|
||||
pjson = JSON.parse(File.read('package.json'))
|
||||
|
||||
Pod::Spec.new do |s|
|
||||
|
||||
s.name = "RNFS"
|
||||
s.version = "1.3.0"
|
||||
s.homepage = "https://github.com/johanneslumpe/react-native-fs"
|
||||
s.platform = :ios, "7.0"
|
||||
s.source = { :git => "https://github.com/johanneslumpe/react-native-fs.git" }
|
||||
s.source_files = '*.{h,m}'
|
||||
s.preserve_paths = "**/*.js"
|
||||
s.dependency 'React/Core'
|
||||
s.name = "RNFS"
|
||||
s.version = pjson["version"]
|
||||
s.homepage = "https://github.com/johanneslumpe/react-native-fs"
|
||||
s.summary = pjson["description"]
|
||||
s.license = pjson["license"]
|
||||
s.author = { "Johannes Lumpe" => "johannes@lum.pe" }
|
||||
s.platform = :ios, "7.0"
|
||||
s.source = { :git => "https://github.com/johanneslumpe/react-native-fs", :tag => "#{s.version}" }
|
||||
s.source_files = '*.{h,m}'
|
||||
s.preserve_paths = "**/*.js"
|
||||
|
||||
s.dependency 'React/Core'
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue