Last active
August 29, 2015 14:12
-
-
Save mtsd/2209a02f2043ee694e16 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 = "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