forked from travismgibson/react-native-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
react-native-s3.podspec
36 lines (33 loc) · 1.23 KB
/
react-native-s3.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = package["name"]
s.version = package["version"]
s.summary = package["description"]
s.author = 'Frame-One-Software'
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/Frame-One-Software/react-native-s3.git", :tag => "#{s.version}" }
s.source_files = "ios/RNS3/*.{h,m}"
s.dependency "React"
end
# Pod::Spec.new do |s|
# s.name = package['name']
# s.version = package['version']
# s.summary = package['description']
# s.description = package['description']
# s.license = package['license']
# s.author = package['author']
# s.homepage = package['homepage']
# s.source = { :git => 'https://github.com/yamill/react-native-orientation.git', :tag => s.version }
#
# s.requires_arc = true
# s.platform = :ios, '7.0'
#
# s.preserve_paths = 'README.md', 'package.json', 'index.js'
# s.source_files = 'iOS/RCTOrientation/*.{h,m}'
#
# s.dependency 'React'
# end