Created
September 5, 2012 15:11
-
-
Save ArtFeel/3638115 to your computer and use it in GitHub Desktop.
Podspec for RSSKit (jameshays fork)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Pod::Spec.new do |s| | |
s.name = 'RSSKit' | |
s.version = '0.0.1' | |
s.summary = 'iOS framework to make development of RSS reader apps easier.' | |
s.description = %{ | |
iOS framework to make development of RSS reader apps easier. | |
This is pod for jameshays fork. Which implemeting asynchronous loading, arc and some fixes. | |
} | |
s.homepage = 'https://github.com/H2CO3/RSSKit' | |
s.author = { 'Árpád Goretity' => '[email protected]' } | |
s.source = { :git => 'https://github.com/jameshays/RSSKit.git', | |
:commit => '1a9ad2c1f64518a17f4409d1dc8d88955464e4eb' } | |
s.platform = :ios | |
s.source_files = 'RSSKit/*.{h,m}' | |
s.requires_arc = true | |
s.frameworks = 'Foundation' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment