Skip to content

Commit

Permalink
Added SSToolkit 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
soffes committed Nov 1, 2011
1 parent 7dd85c3 commit 2d1b877
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions SSToolkit/0.1.2/SSToolkit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
Pod::Spec.new do |s|
s.name = 'SSToolkit'
s.version = '0.1.2'
s.platform = :ios
s.summary = 'A collection of well-documented iOS classes for making life easier.'
s.homepage = 'http://sstoolk.it'
s.author = { 'Sam Soffes' => 'sam@samsoff.es' }
s.source = { :git => 'https://github.com/samsoffes/sstoolkit.git', :tag => '0.1.2' }

s.description = 'SSToolkit is a collection of well-documented iOS classes for making life ' \
'easier by solving common problems all iOS developers face. Some really ' \
'handy classes are SSCollectionView, SSGradientView, SSSwitch, and many more.'

s.resources = 'Resources'
s.source_files = 'SSToolkit/**/*.{h,m}'
s.frameworks = 'QuartzCore', 'CoreGraphics'

def s.post_install
prefix_header = config.project_pods_root + 'Pods-Prefix.pch'
prefix_header.open('a') do |file|
file.puts(%{#ifdef __OBJC__\n#import "SSToolkitDefines.h"\n#endif})
end
end
end

0 comments on commit 2d1b877

Please sign in to comment.