From ea649e9cd6689d0bac7aaa88b1e81068ef51390c Mon Sep 17 00:00:00 2001 From: Richard Lindhout Date: Wed, 2 Aug 2017 14:19:50 +0200 Subject: [PATCH] Create ReactNativeTouchThroughView.podspec --- ReactNativeTouchThroughView.podspec | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 ReactNativeTouchThroughView.podspec diff --git a/ReactNativeTouchThroughView.podspec b/ReactNativeTouchThroughView.podspec new file mode 100644 index 0000000..5585ef5 --- /dev/null +++ b/ReactNativeTouchThroughView.podspec @@ -0,0 +1,17 @@ +require 'json' + +package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) + +Pod::Spec.new do |s| + s.name = 'ReactNativeTouchThroughView' + s.version = package['version'] + s.summary = package['description'] + s.license = package['license'] + s.homepage = 'https://github.com/rome2rio/react-native-touch-through-view' + s.authors = 'rome2rio' + s.source = { :git => 'https://github.com/rome2rio/react-native-touch-through-view.git', :tag => "v#{s.version}" } + s.source_files = 'ios/**/*.{h,m}' + s.requires_arc = true + s.platform = :ios, "7.0" + s.dependency 'React' +end