From d31c4bafc81a1946622e7002ab898527e6b3c71f Mon Sep 17 00:00:00 2001 From: Stephen Kopylov Date: Wed, 18 Apr 2018 17:35:51 +0300 Subject: [PATCH] Podspec added --- RNKeyboardManager.podspec | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 RNKeyboardManager.podspec diff --git a/RNKeyboardManager.podspec b/RNKeyboardManager.podspec new file mode 100644 index 0000000..1246d29 --- /dev/null +++ b/RNKeyboardManager.podspec @@ -0,0 +1,20 @@ +require 'json' +version = JSON.parse(File.read('package.json'))["version"] + +Pod::Spec.new do |s| + s.name = "RNKeyboardManager" + s.version = version + s.description = <<-DESC + This library allows to prevent issues of keyboard sliding up and cover on React-Native iOS projects + DESC + s.homepage = "https://github.com/douglasjunior/react-native-keyboard-manager" + s.summary = "A component for react-native" + s.license = "MIT" + s.authors = "Douglas Nassif Roma Junior" + s.source = { :git => "https://github.com/douglasjunior/react-native-keyboard-manager.git", :tag => "v#{s.version}" } + s.platform = :ios, "8.0" + s.preserve_paths = 'README.md', 'package.json', '*.js' + s.source_files = 'ios/ReactNativeKeyboardManager/**/*.{h,m}' + s.dependency 'React' + s.dependency 'IQKeyboardManager' +end \ No newline at end of file