react-native-fs/RNFS.podspec

18 lines
576 B
Plaintext
Raw Normal View History

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