├── .gitignore ├── LICENSE ├── README.md ├── TextBundle-Mac ├── Info.plist └── TextBundle.h ├── TextBundle-iOS ├── Info.plist └── TextBundle.h ├── TextBundle.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ ├── TextBundle-Mac.xcscheme │ └── TextBundle-iOS.xcscheme ├── TextBundle ├── TextBundleWrapper.h └── TextBundleWrapper.m └── TextBundleTests ├── Info.plist ├── Sample TextBundles ├── invalid no info.textbundle │ └── text.md ├── invalid no text.textbundle │ └── info.json ├── invalid zipped textbundle.textbundle ├── only text.textbundle │ ├── info.json │ └── text.md ├── sample asset 2.jpg ├── sample asset.jpg └── text plus attachments.textbundle │ ├── assets │ └── oh no.jpg │ ├── info.json │ └── text.md └── TextBundleTests.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/README.md -------------------------------------------------------------------------------- /TextBundle-Mac/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle-Mac/Info.plist -------------------------------------------------------------------------------- /TextBundle-Mac/TextBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle-Mac/TextBundle.h -------------------------------------------------------------------------------- /TextBundle-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle-iOS/Info.plist -------------------------------------------------------------------------------- /TextBundle-iOS/TextBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle-iOS/TextBundle.h -------------------------------------------------------------------------------- /TextBundle.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TextBundle.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TextBundle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TextBundle.xcodeproj/xcshareddata/xcschemes/TextBundle-Mac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle.xcodeproj/xcshareddata/xcschemes/TextBundle-Mac.xcscheme -------------------------------------------------------------------------------- /TextBundle.xcodeproj/xcshareddata/xcschemes/TextBundle-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle.xcodeproj/xcshareddata/xcschemes/TextBundle-iOS.xcscheme -------------------------------------------------------------------------------- /TextBundle/TextBundleWrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle/TextBundleWrapper.h -------------------------------------------------------------------------------- /TextBundle/TextBundleWrapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundle/TextBundleWrapper.m -------------------------------------------------------------------------------- /TextBundleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Info.plist -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/invalid no info.textbundle/text.md: -------------------------------------------------------------------------------- 1 | Text -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/invalid no text.textbundle/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/invalid no text.textbundle/info.json -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/invalid zipped textbundle.textbundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/invalid zipped textbundle.textbundle -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/only text.textbundle/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/only text.textbundle/info.json -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/only text.textbundle/text.md: -------------------------------------------------------------------------------- 1 | Text -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/sample asset 2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/sample asset 2.jpg -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/sample asset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/sample asset.jpg -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/text plus attachments.textbundle/assets/oh no.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/text plus attachments.textbundle/assets/oh no.jpg -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/text plus attachments.textbundle/info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/Sample TextBundles/text plus attachments.textbundle/info.json -------------------------------------------------------------------------------- /TextBundleTests/Sample TextBundles/text plus attachments.textbundle/text.md: -------------------------------------------------------------------------------- 1 | Text -------------------------------------------------------------------------------- /TextBundleTests/TextBundleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shinyfrog/TextBundle/HEAD/TextBundleTests/TextBundleTests.m --------------------------------------------------------------------------------