Add required fields to podspec

Cocoapods >= 1 requires `summary` and `author`
This commit is contained in:
Gabriel Reis 2016-04-05 16:21:14 -04:00
parent ccff513f1a
commit 4be7e7d5ce
1 changed files with 2 additions and 0 deletions

View File

@ -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 <LinearGradient /> 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}'