Skip to content

Instantly share code, notes, and snippets.

@mtsd
Last active August 29, 2015 14:12
Show Gist options
  • Select an option

  • Save mtsd/2209a02f2043ee694e16 to your computer and use it in GitHub Desktop.

Select an option

Save mtsd/2209a02f2043ee694e16 to your computer and use it in GitHub Desktop.
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment