├── .gitignore ├── .swift-version ├── .travis.yml ├── Example ├── JPAttributedString.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── JPAttributedString-Example.xcscheme ├── JPAttributedString.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Podfile ├── Podfile.lock └── Tests │ ├── Info.plist │ └── StringAttributesSpec.swift ├── JPAttributedString.podspec ├── JPAttributedString ├── .gitignore ├── .travis.yml └── Classes │ ├── .gitkeep │ ├── Attributable.swift │ ├── AttributedStringDSL.swift │ ├── StringAttributes.swift │ └── StringExtension.swift ├── LICENSE ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/.travis.yml -------------------------------------------------------------------------------- /Example/JPAttributedString.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/JPAttributedString.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/JPAttributedString.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/JPAttributedString.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JPAttributedString.xcodeproj/xcshareddata/xcschemes/JPAttributedString-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/JPAttributedString.xcodeproj/xcshareddata/xcschemes/JPAttributedString-Example.xcscheme -------------------------------------------------------------------------------- /Example/JPAttributedString.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/JPAttributedString.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/JPAttributedString.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/JPAttributedString.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Example/Tests/StringAttributesSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/Example/Tests/StringAttributesSpec.swift -------------------------------------------------------------------------------- /JPAttributedString.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString.podspec -------------------------------------------------------------------------------- /JPAttributedString/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString/.gitignore -------------------------------------------------------------------------------- /JPAttributedString/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString/.travis.yml -------------------------------------------------------------------------------- /JPAttributedString/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /JPAttributedString/Classes/Attributable.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString/Classes/Attributable.swift -------------------------------------------------------------------------------- /JPAttributedString/Classes/AttributedStringDSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString/Classes/AttributedStringDSL.swift -------------------------------------------------------------------------------- /JPAttributedString/Classes/StringAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString/Classes/StringAttributes.swift -------------------------------------------------------------------------------- /JPAttributedString/Classes/StringExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/JPAttributedString/Classes/StringExtension.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jPaolantonio/JPAttributedString/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------