forked from itinance/react-native-fs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNFS.podspec
More file actions
22 lines (17 loc) · 677 Bytes
/
RNFS.podspec
File metadata and controls
22 lines (17 loc) · 677 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
pjson = JSON.parse(File.read('package.json'))
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 = '8.0'
s.tvos.deployment_target = '9.2'
s.osx.deployment_target = '10.10'
s.source = { :git => "https://github.com/itinance/react-native-fs", :tag => "v#{s.version}" }
s.source_files = '*.{h,m}'
s.preserve_paths = "**/*.js"
s.dependency 'React-Core'
end