-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathreact-native-jjkit.podspec
More file actions
30 lines (24 loc) · 939 Bytes
/
react-native-jjkit.podspec
File metadata and controls
30 lines (24 loc) · 939 Bytes
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
require "json"
package = JSON.parse(File.read(File.join(__dir__, "package.json")))
Pod::Spec.new do |s|
s.name = "react-native-jjkit"
s.version = package["version"]
s.summary = package["description"]
s.description = <<-DESC
react-native-jjkit
DESC
s.homepage = "https://github.com/github_account/react-native-jjkit"
s.license = "Apache License 2.0"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.authors = { "Juan J LF" => "justinjlf21@gmail.com" }
s.platforms = { :ios => "10.0" }
s.source = { :git => "https://github.com/github_account/react-native-jjkit.git", :tag => "#{s.version}" }
s.source_files = "ios/**/*.{h,m,swift}"
s.requires_arc = true
s.swift_version = '4.2'
s.dependency "React"
s.resource_bundles = {
'jjkitbundle' => ['ios/**/*.xcassets']
}
s.dependency 'JJGuiso', '~> 1.9.4'
end