Pod::Spec.new do |s|
s.name = "XSWI"
s.version = "1.0.5"
s.summary = "XML stream writer for iOS"
s.description = <<-DESC
The XSWI project hosts a simple, standalone XML stream writer for iOS implemented in Objective-C.
The project is inspired by the kXML and StAX serializers from the Java world.
DESC
s.homepage = "https://code.google.com/p/xswi/"
s.license = "MIT"
s.author = ""
s.platform = :ios
# s.platform = :ios, "5.0"
s.ios.deployment_target = "7.0"
s.source = { :http => "https://xswi.googlecode.com/archive/v1.0.5.zip",
:flatten => true }
s.source_files = "xswi/XMLWriter.{h,m}"
s.requires_arc = true
end