RNThread.podspec 571 Bytes
Newer Older
Zain Sajjad's avatar
Zain Sajjad committed
1 2 3
require 'json'

package = JSON.parse(File.read(File.join(__dir__, '../package.json')))
4 5

Pod::Spec.new do |s|
Zain Sajjad's avatar
Zain Sajjad committed
6 7 8 9 10 11 12 13
  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 }
14 15
  s.source_files  = "RNThread/**/*.{h,m}"

Zain Sajjad's avatar
Zain Sajjad committed
16
  s.dependency 'React'
17
end