[Add] com-qqsdk-control-Tools 1.2.1
[CocoaPods.git] / Specs / 5 / a / b / NSStringMask / 1.2.1 / NSStringMask.podspec.json
blobebd7b87acb8b44d128c6bb4c57ec1c9ea7d730c5
2   "name": "NSStringMask",
3   "version": "1.2.1",
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.1"
17   },
18   "social_media_url": "https://twitter.com/flavio_caetano",
19   "platforms": {
20     "ios": "4.0"
21   },
22   "source_files": "NSStringMask/Classes/**/*"