[Add] DocumentReaderMRZBarcodeStage 7.5.10862
[CocoaPods.git] / Specs / b / 2 / 7 / SwiftRegex / 1.3.0 / SwiftRegex.podspec.json
blobc08d6944b76572c6e62120c38d46d89392ef099c
2   "name": "SwiftRegex",
3   "version": "1.3.0",
4   "summary": "A simple Swift NSRegularExpression library",
5   "platforms": {
6     "ios": "8.1",
7     "osx": "10.10"
8   },
9   "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",
10   "homepage": "http://github.com/wjk/SwiftRegex",
11   "license": {
12     "type": "MIT",
13     "file": "LICENSE.md"
14   },
15   "authors": "William Kent",
16   "source": {
17     "git": "https://github.com/wjk/SwiftRegex.git",
18     "tag": "1.3.0"
19   },
20   "source_files": "SwiftRegex/*.swift",
21   "requires_arc": true