foundationkit / FoundationKit

Everything that really should be in Foundation, but isn't. Future-proof with ARC
Other
80 stars 9 forks source link

Cocoapods support? #39

Closed myell0w closed 11 years ago

myell0w commented 13 years ago

since all the cool kids do this now

MSch commented 13 years ago

Yes definitely. +1

myell0w commented 12 years ago

First (untested) version of a podspec-file - Thoughts, comments?

Pod::Spec.new do |s| s.name = 'FoundationKit' s.version = '0.5' s.license = 'MIT' s.summary = 'Everything that really should be in CoreFoundation, but is not.' s.homepage = 'http://foundationk.it' s.authors = { 'Erik Aigner' => 'erik@chocomoko.com', 'Martin Schürrer' => 'martin@schuerrer.org', 'Peter Steinberger' => 'foundationkit@petersteinberger.com', 'Matthias Tretter' => 'myell0w@me.com' } s.source = { :git => 'https://github.com/foundationkit/FoundationKit.git', :tag => '0.5' } s.description = 'Consider FoundationKit Foundations big brother. We add lots of useful ' \ 'categories, helpers, classes and macros. ' \ 'FoundationKit is built With ARC for both for iOS 4.0+ and Mac OS 10.6+. ' \ 'If you start a new app today, it is the perfect time to begin with it.' s.sourcefiles = 'Sources', 'Sources/*/_.{h,m}' s.frameworks = 'CoreGraphics', 'Foundation' s.requires_arc = true end

kampfgnu commented 11 years ago

hi! any plans to add the podspec to repo? cheers