[Add] DocumentReaderMRZBarcodeStage 7.5.10862
[CocoaPods.git] / Specs / b / 2 / 7 / SwiftRegex / 1.0.0 / SwiftRegex.podspec.json
blobf7135e58846de353d0e9cbb3819bfee3b0e38b27
2   "name": "SwiftRegex",
3   "version": "1.0.0",
4   "summary": "A simple Swift NSRegularExpression library",
5   "platforms": {
6     "osx": "10.10"
7   },
8   "description": "SwiftRegex is a simple wrapper around the Foundation NSRegularExpression API.\nIt provides the following methods:\n\n* `test()` -- checks to see if the passed-in string matches the regex.\n* `match()` -- returns an array of Match structs, each containing\n  one match of the regex against the target string. Each match contains\n  a number of subgroups, if any were present in the regex.\n* `replace()` -- wraps the NSRegularExpression string-replacement API.\n\nThe Regex struct also conforms to `StringLiteralConvertible` for easy creation.\n",
9   "homepage": "http://github.com/wjk/SwiftRegex",
10   "license": {
11     "type": "MIT",
12     "file": "LICENSE.md"
13   },
14   "authors": "William Kent",
15   "source": {
16     "git": "https://github.com/wjk/SwiftRegex.git",
17     "tag": "1.0.0"
18   },
19   "source_files": "SwiftRegex/*.swift",
20   "requires_arc": true