Commit 97f05b65 authored by Zain Sajjad's avatar Zain Sajjad Committed by GitHub

Update RNThread.podspec

parent 01b208aa
require 'json'
package = JSON.parse(File.read(File.join(__dir__, '../package.json')))
Pod::Spec.new do |s|
s.name = "RNThread"
s.version = "1.0.0"
s.summary = "RNThread"
s.description = <<-DESC
RNThread
DESC
s.homepage = ""
s.license = "MIT"
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
s.author = { "author" => "author@domain.cn" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/author/RNThread.git", :tag => "master" }
s.name = "RNThread"
s.version = package['version']
s.summary = "React native threads"
s.description = "React native threads"
s.license = package['license']
s.author = package['author']
s.homepage = "https://github.com/joltup/RNThread.git"
s.source = { :git => "https://github.com/joltup/RNThread.git", :tag => s.version }
s.source_files = "RNThread/**/*.{h,m}"
s.requires_arc = true
s.dependency "React"
#s.dependency "others"
s.dependency 'React'
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment