This repository has been archived by the owner on Jun 23, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swift 4.2 and quality of life improvements (#82)
Swift 4.2 and quality of life improvements Co-authored-by: Jack Yin <[email protected]> Co-authored-by: null <[email protected]> Co-authored-by: ming.z <[email protected]> Co-authored-by: Joel Fischer <[email protected]>
- Loading branch information
Showing
15 changed files
with
220 additions
and
324 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
3.0 | ||
4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,34 @@ | ||
@version = '1.3' | ||
@version = '1.4' | ||
|
||
Pod::Spec.new do |s| | ||
|
||
s.name = 'Iconic' | ||
s.version = @version | ||
s.summary = 'Auto-generated icon font library for iOS [beta]' | ||
s.description = 'Iconic will help you make icon fonts integration on iOS easy and effortless. Its main component is in charge of auto-generating strongly typed code in Swift, fully compatible with Objective-C, allowing the integration of vector icons as image or text in your apps.' | ||
|
||
s.homepage = 'https://github.com/dzenbot/Iconic' | ||
s.screenshots = '' | ||
s.author = { 'Ignacio Romero Zurbuchen' => '[email protected]' } | ||
|
||
s.license = { | ||
:type => 'MIT', | ||
:file => 'LICENSE' | ||
} | ||
|
||
s.source = { | ||
:git => 'https://github.com/dzenbot/Iconic.git', | ||
:tag => @version | ||
} | ||
|
||
s.source_files = 'Source/*.{swift}' | ||
s.resources = 'Source/**/*.{ttf,otf}' | ||
s.preserve_paths = 'Source/Catalog/**/*.*' | ||
s.preserve_paths = 'Source/' | ||
s.framework = 'UIKit', 'CoreText' | ||
|
||
s.ios.deployment_target = '8.0' | ||
s.tvos.deployment_target = '9.0' | ||
s.watchos.deployment_target = '2.0' | ||
|
||
s.pod_target_xcconfig = { | ||
'ENABLE_BITCODE' => 'NO', | ||
'SWIFT_VERSION' => '3.0', | ||
} | ||
|
||
s.prepare_command = "sh Source/Iconizer.sh '#{ENV['FONT_PATH']}' --verbose" | ||
s.prepare_command = "sh Source/Iconizer.sh '#{ENV['FONT_PATH']}' '#{ENV['CUSTOM_FONT_NAME']}'" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.