[Add] AlibabacloudAgency20221216 1.7.0
[CocoaPods.git] / Specs / 5 / a / b / NSStringMask / 1.2.2 / NSStringMask.podspec.json
blobff71988e1a51f9cf380f0f044b775d24776cc19f
2   "name": "NSStringMask",
3   "version": "1.2.2",
4   "summary": "NSStringMask enables you to apply masks or formats to NSStrings using NSRegularExpression to input your format.",
5   "description": "This tiny library was developed to help you apply masks and formats to strings.\n\nFor instance, suppose you have the string `12345678` and want to format it as a Social Security Number (which regex pattern is `d{3}-d{2}-d{3}`). With NSStringMask, all you have to do is `[NSStringMask maskString:@\"12345678\" withPattern:@\"(\\d{3})-(\\d{2})-(\\d{3})\"]` and the result will be \"123-45-678\". Simple enough?",
6   "homepage": "https://github.com/fjcaetano/NSStringMask",
7   "license": {
8     "type": "MIT",
9     "file": "LICENSE"
10   },
11   "authors": {
12     "Flávio Caetano": "flavio@vieiracaetano.com"
13   },
14   "source": {
15     "git": "https://github.com/fjcaetano/NSStringMask.git",
16     "tag": "1.2.2"
17   },
18   "social_media_url": "https://twitter.com/flavio_caetano",
19   "platforms": {
20     "ios": "4.0"
21   },
22   "source_files": "NSStringMask/Classes/**/*"