File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ require 'json'
2
+
3
+ package = JSON . parse ( File . read ( File . join ( __dir__ , '../../node_modules/react-native-custom-tabs/package.json' ) ) )
4
+
5
+ Pod ::Spec . new do |s |
6
+ s . name = "react-native-custom-tabs"
7
+ s . version = package [ 'version' ]
8
+ s . author = 'droibit'
9
+ s . license = 'Apache'
10
+ s . summary = s . name
11
+ s . homepage = 'https://github.com/droibit/react-native-custom-tabs'
12
+ s . source = { :git => 'https://github.com/droibit/react-native-custom-tabs' , :commit => '630f54c7ead2e18fd22df94edb5ab5242b674948' }
13
+ s . requires_arc = true
14
+ s . platform = :ios , "8.0"
15
+ s . pod_target_xcconfig = { "CLANG_CXX_LANGUAGE_STANDARD" => "c++14" }
16
+ s . header_dir = 'ios'
17
+ s . preserve_paths = "ios/**"
18
+ s . dependency 'React'
19
+ s . source_files = "ios/**/*.{h,m}"
20
+ s . libraries = "stdc++"
21
+ end
You can’t perform that action at this time.
0 commit comments