├── .gitignore ├── .ruby-version ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── Example ├── .gitignore ├── Font.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── Font-Example.xcscheme ├── Font │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Controllers │ │ └── OptionsController.swift │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Info.plist │ ├── Models │ │ └── FontViewModel.swift │ ├── Typefaces │ │ └── Source Sans Pro │ │ │ ├── SIL Open Font License.txt │ │ │ ├── SourceSansPro-Black.otf │ │ │ ├── SourceSansPro-BlackIt.otf │ │ │ ├── SourceSansPro-Bold.otf │ │ │ ├── SourceSansPro-BoldIt.otf │ │ │ ├── SourceSansPro-ExtraLight.otf │ │ │ ├── SourceSansPro-ExtraLightIt.otf │ │ │ ├── SourceSansPro-It.otf │ │ │ ├── SourceSansPro-Light.otf │ │ │ ├── SourceSansPro-LightIt.otf │ │ │ ├── SourceSansPro-Regular.otf │ │ │ ├── SourceSansPro-Semibold.otf │ │ │ ├── SourceSansPro-SemiboldIt.otf │ │ │ └── SourceSansPro.swift │ └── ViewController.swift ├── Podfile ├── Podfile.lock └── Tests │ ├── FontSpec.swift │ └── Info.plist ├── Font.podspec ├── Font ├── 0.4.0 │ └── Font.podspec └── 0.4.1 │ └── Font.podspec ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── DynamicTypeListener.swift │ └── Font.swift ├── README.md └── _Pods.xcodeproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 2.4.5 2 | -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 4.2 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- 1 | Pods 2 | *.xcworkspace 3 | -------------------------------------------------------------------------------- /Example/Font.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Font.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Font.xcodeproj/xcshareddata/xcschemes/Font-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font.xcodeproj/xcshareddata/xcschemes/Font-Example.xcscheme -------------------------------------------------------------------------------- /Example/Font/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Font/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Example/Font/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Font/Controllers/OptionsController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Controllers/OptionsController.swift -------------------------------------------------------------------------------- /Example/Font/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Font/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Info.plist -------------------------------------------------------------------------------- /Example/Font/Models/FontViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Models/FontViewModel.swift -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SIL Open Font License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SIL Open Font License.txt -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Black.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-BlackIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-BlackIt.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Bold.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-BoldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-BoldIt.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-ExtraLight.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-ExtraLightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-ExtraLightIt.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-It.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-It.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Light.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-LightIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-LightIt.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Regular.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-Semibold.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro-SemiboldIt.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro-SemiboldIt.otf -------------------------------------------------------------------------------- /Example/Font/Typefaces/Source Sans Pro/SourceSansPro.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/Typefaces/Source Sans Pro/SourceSansPro.swift -------------------------------------------------------------------------------- /Example/Font/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Font/ViewController.swift -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Tests/FontSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Tests/FontSpec.swift -------------------------------------------------------------------------------- /Example/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Example/Tests/Info.plist -------------------------------------------------------------------------------- /Font.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Font.podspec -------------------------------------------------------------------------------- /Font/0.4.0/Font.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Font/0.4.0/Font.podspec -------------------------------------------------------------------------------- /Font/0.4.1/Font.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Font/0.4.1/Font.podspec -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/DynamicTypeListener.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Pod/Classes/DynamicTypeListener.swift -------------------------------------------------------------------------------- /Pod/Classes/Font.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/Pod/Classes/Font.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adamyanalunas/Font/HEAD/README.md -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------