19 lines
561 B
Ruby
19 lines
561 B
Ruby
Pod::Spec.new do |s|
|
|
s.name = "BlockRSSParser"
|
|
s.version = "1.0"
|
|
s.summary = "AFNetworkingXMLRequestOperation based RSS parser."
|
|
s.homepage = "https://github.com/tiboll/BlockRSSParser"
|
|
|
|
s.license = { :type => 'MIT', :file => 'LICENSE' }
|
|
|
|
s.author = { "Thibaut LE LEVIER" => "thibaut@lelevier.fr" }
|
|
|
|
s.source = { :git => "https://github.com/tiboll/BlockRSSParser.git", :tag => "1.0" }
|
|
|
|
s.platform = :ios
|
|
|
|
s.source_files = 'Classes', 'RSSParser/*.{h,m}'
|
|
|
|
s.dependency 'AFNetworking', '~> 0.10.1'
|
|
end
|