-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add spm support * Update podspec * Add missing imports
- Loading branch information
Showing
12 changed files
with
61 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// swift-tools-version: 5.7 | ||
// The swift-tools-version declares the minimum version of Swift required to build this package. | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "StyledText", | ||
platforms: [ | ||
.iOS(.v12) | ||
], | ||
products: [ | ||
.library( | ||
name: "StyledText", | ||
targets: ["StyledText"]) | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target( | ||
name: "StyledText", | ||
dependencies: [], | ||
path: "Sources") | ||
], | ||
swiftLanguageVersions: [.v5] | ||
) |
File renamed without changes.
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
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
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
File renamed without changes.
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,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'StyledText' | ||
s.version = '1.3.0' | ||
s.version = '1.4.0' | ||
s.summary = 'Declarative text styles and simple Dynamic Type support for iOS' | ||
s.description = <<-DESC | ||
StyledText is a library that simplifies styling dynamic text in iOS applications. Instead of having to use attributed strings every time you need to update text, you can declaratively set a text style on your labels. When the text of the label is updated, the label uses the preset style. | ||
|
@@ -9,8 +9,8 @@ Pod::Spec.new do |s| | |
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'huebnerob' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/blueapron/styled-text.git', :tag => 'v' + s.version.to_s } | ||
s.ios.deployment_target = '10.0' | ||
s.swift_version = '5.0' | ||
s.source_files = 'StyledText/Classes/**/*' | ||
s.ios.deployment_target = '12.0' | ||
s.swift_version = '5.7' | ||
s.source_files = 'Sources/StyledText/Classes/**/*' | ||
s.frameworks = 'UIKit' | ||
end |
Empty file.