-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a4b504a
commit 9980f6d
Showing
6 changed files
with
303 additions
and
6 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'KissXML' | ||
s.version = '5.0' | ||
s.version = '5.0.1' | ||
s.license = { :type => 'MIT', :file => 'LICENSE.txt' } | ||
s.summary = 'A replacement for Cocoa\'s NSXML cluster of classes. Based on libxml.' | ||
s.homepage = 'https://github.com/robbiehanson/KissXML' | ||
s.author = { 'Robbie Hanson' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/robbiehanson/KissXML.git', :tag => s.version } | ||
|
||
s.source_files = 'KissXML/**/*.{h,m}' | ||
s.library = 'xml2' | ||
s.requires_arc = true | ||
s.xcconfig = { 'HEADER_SEARCH_PATHS' => '$(SDKROOT)/usr/include/libxml2', | ||
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES' } # Due to #import <libxml/tree.h> in DDXMLNode.h | ||
'CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES' => 'YES', # Due to #import <libxml/tree.h> in DDXMLNode.h | ||
'OTHER_CFLAGS' => "$(inherited) -DDDXML_NS_DECLARATIONS_ENABLED=1"} | ||
s.ios.deployment_target = "6.0" | ||
s.osx.deployment_target = "10.8" | ||
s.tvos.deployment_target = '9.0' | ||
end |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleExecutable</key> | ||
<string>$(EXECUTABLE_NAME)</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundleName</key> | ||
<string>$(PRODUCT_NAME)</string> | ||
<key>CFBundlePackageType</key> | ||
<string>BNDL</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
</dict> | ||
</plist> |
Oops, something went wrong.