From ca319fb0807349e0197d38b179c12380d64aa295 Mon Sep 17 00:00:00 2001 From: Joel Arvidsson Date: Tue, 5 Apr 2016 21:02:04 -0500 Subject: [PATCH] Adds podspec for cocoapods support. --- RNNotificationActions.podspec | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 RNNotificationActions.podspec diff --git a/RNNotificationActions.podspec b/RNNotificationActions.podspec new file mode 100644 index 0000000..812b011 --- /dev/null +++ b/RNNotificationActions.podspec @@ -0,0 +1,18 @@ +require 'json' +version = JSON.parse(File.read('package.json'))["version"] + +Pod::Spec.new do |s| + + s.name = "RNNotificationActions" + s.version = version + s.summary = "Swipe + text input actions for ios push notifications." + s.homepage = "https://github.com/holmesal/react-native-ios-notification-actions" + s.license = "MIT" + s.author = { "Alonso Holmes" => "hello@alonso.io" } + s.platform = :ios, "8.0" + s.source = { :git => "https://github.com/holmesal/react-native-ios-notification-actions.git", :tag => "v#{s.version}" } + s.source_files = 'RNNotificationActions/*.{h,m}' + s.preserve_paths = "**/*.js" + s.dependency 'React' + +end