From d7f3fde69ea26c473989a4ea43323dba87a811d3 Mon Sep 17 00:00:00 2001 From: Arno Fortelny Date: Wed, 6 Apr 2016 11:43:32 -0400 Subject: [PATCH] Update react-native-blur.podspec Latest version of cocoa pods rejects this pod spec. Resolved error due to missing authors Resolved error due to missing homepage Resolved error due to missing source Resolved error due to missing summary Resolved warning due to missing license --- react-native-blur.podspec | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/react-native-blur.podspec b/react-native-blur.podspec index 74dc756..2391cd4 100644 --- a/react-native-blur.podspec +++ b/react-native-blur.podspec @@ -1,7 +1,13 @@ Pod::Spec.new do |s| - s.name = "react-native-blur" - s.version = "0.7.9" + s.name = "react-native-blur" + s.version = "0.7.10" s.source_files = "ios/*.{h,m}" + s.platform = :ios, "8.0" + s.authors = { "Alexey Kureev" => "kureev-mail@ya.ru" } + s.license = "MIT" + s.summary = "Component implementation for UIVisualEffectView's blur and vibrancy effect." + s.homepage = "https://github.com/react-native-fellowship/react-native-blur" + s.source = { :git => "https://github.com/react-native-fellowship/react-native-blur.git" } + s.dependency 'React' - s.platform = :ios, "8.0" end