From 1f0d91cb93e915f5f270be6bd525e4a0d2a82e1d Mon Sep 17 00:00:00 2001 From: Sam Soffes Date: Wed, 10 Jul 2013 00:16:31 -0700 Subject: [PATCH] Version 0.1.1 --- SAMGradientView.podspec | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/SAMGradientView.podspec b/SAMGradientView.podspec index 013465f..e66af71 100644 --- a/SAMGradientView.podspec +++ b/SAMGradientView.podspec @@ -1,14 +1,14 @@ -Pod::Spec.new do |s| - s.name = 'SAMGradientView' - s.version = '0.1.0' - s.authors = {'Sam Soffes' => 'sam@soff.es'} - s.homepage = 'https://github.com/soffes/SAMGradientView' - s.summary = 'Easily use gradients in UIKit.' - s.source = {:git => 'https://github.com/soffes/SAMGradientView.git', :tag => 'v0.1.0'} - s.license = { :type => 'MIT', :file => 'LICENSE' } +Pod::Spec.new do |spec| + spec.name = 'SAMGradientView' + spec.version = '0.1.1' + spec.authors = {'Sam Soffes' => 'sam@soff.es'} + spec.homepage = 'https://github.com/soffes/SAMGradientView' + spec.summary = 'Easily use gradients in UIKit.' + spec.source = {:git => 'https://github.com/soffes/SAMGradientView.git', :tag => "v#{spec.version}"} + spec.license = { :type => 'MIT', :file => 'LICENSE' } - s.platform = :ios - s.requires_arc = true - s.frameworks = 'UIKit', 'CoreGraphics' - s.source_files = 'SAMGradientView' + spec.platform = :ios + spec.requires_arc = true + spec.frameworks = 'UIKit', 'CoreGraphics' + spec.source_files = 'SAMGradientView' end