react-native-fs/RNFS.podspec

22 lines
604 B
Plaintext
Raw Permalink Normal View History

2016-05-14 21:19:29 +02:00
require 'json'
pjson = JSON.parse(File.read('package.json'))
2016-01-07 14:41:12 -06:00
Pod::Spec.new do |s|
2016-05-14 21:19:29 +02:00
s.name = "RNFS"
s.version = pjson["version"]
s.homepage = "https://github.com/itinance/react-native-fs"
2016-05-14 21:19:29 +02:00
s.summary = pjson["description"]
s.license = pjson["license"]
s.author = { "Johannes Lumpe" => "johannes@lum.pe" }
2017-08-02 23:07:57 +02:00
2017-08-03 12:09:16 +02:00
s.ios.deployment_target = '9.0'
2017-08-02 23:07:57 +02:00
s.source = { :git => "https://github.com/itinance/react-native-fs", :tag => "v#{s.version}" }
2016-05-14 21:19:29 +02:00
s.source_files = '*.{h,m}'
s.preserve_paths = "**/*.js"
2017-08-02 23:07:57 +02:00
s.dependency 'React'
2016-05-14 21:19:29 +02:00
2016-01-07 14:41:12 -06:00
end