[Add] YLProgressHUD 0.0.2
[CocoaPods.git] / Specs / 1 / 6 / 2 / SwSelect / 0.0.2 / SwSelect.podspec.json
blob1f1ebec313af010da7d59a1aed5021340058a661
2   "name": "SwSelect",
3   "version": "0.0.2",
4   "summary": "This framework could be used for parsing HTML easily with jQuery style queries.",
5   "description": "# SwSelect\nThis Swift framework provides similar selector implementation to [jQuery](http://jquery.com). It could be used for parsing HTML easily with jQuery style queries. Currently, it supports only tag queries but no content manipulations. Most codes are ported from an Golang project called [\"Cascadia\"](https://github.com/andybalholm/cascadia).\n\n## Simple usage\n```Swift\n//Get image urls\nlet $ = SwSelect(html)\nlet imgUrls = $(”img”).attrs(”src”)\nfor url in imgUrls {\nprint(url)\n}\n\n//get image urls inside tags with class=a1\nlet imgUrls2 = $(”.a1″).find(”img”).attrs(”src”)\n```\nPlease check unit test codes for more usages",
6   "homepage": "https://github.com/julianshen/SwSelect",
7   "license": "MIT",
8   "authors": {
9     "Julian Shen": "julianshen@gmail.com"
10   },
11   "source": {
12     "git": "https://github.com/julianshen/SwSelect.git",
13     "tag": "0.0.2"
14   },
15   "platforms": {
16     "ios": "8.0",
17     "osx": "10.9"
18   },
19   "requires_arc": true,
20   "module_name": "SwSelect",
21   "ios": {
22     "libraries": "xml2"
23   },
24   "xcconfig": {
25     "HEADER_SEARCH_PATHS": "$(SDKROOT)/usr/include/libxml2"
26   },
27   "module_map": "libxml.modulemap",
28   "prepare_command": "cat > \"libxml.modulemap\" << MAP\nmodule libxml [system] {\n    header \"$(SDKROOT)/usr/include/libxml2/libxml/HTMLtree.h\"\n    header \"$(SDKROOT)/usr/include/libxml2/libxml/HTMLparser.h\"\n    header \"$(SDKROOT)/usr/include/libxml2/libxml/xpath.h\"\n    header \"$(SDKROOT)/usr/include/libxml2/libxml/xpathInternals.h\"\n    header \"$(SDKROOT)/usr/include/libxml2/libxml/xmlerror.h\"\n    link \"libxml\"\n    export *\n}\nMAP",
29   "source_files": "SwSelect/libxml2/libxml2.h",
30   "libraries": "xml2"