From 4be7e7d5ce35b16939554fa4a64560f6b70a454b Mon Sep 17 00:00:00 2001 From: Gabriel Reis Date: Tue, 5 Apr 2016 16:21:14 -0400 Subject: [PATCH] Add required fields to podspec Cocoapods >= 1 requires `summary` and `author` --- BVLinearGradient.podspec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BVLinearGradient.podspec b/BVLinearGradient.podspec index 2223688..d964caa 100644 --- a/BVLinearGradient.podspec +++ b/BVLinearGradient.podspec @@ -3,6 +3,8 @@ Pod::Spec.new do |s| s.name = "BVLinearGradient" s.version = "1.5.2" s.homepage = "https://github.com/brentvatne/react-native-linear-gradient" + s.summary = "A component for react-native" + s.author = "Brent Vatne" s.platform = :ios, "7.0" s.source = { :git => "https://github.com/brentvatne/react-native-linear-gradient.git", :tag => "#{s.version}" } s.source_files = 'BVLinearGradient/*.{h,m}'