Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Commit

Permalink
Updated metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtSabintsev committed Sep 13, 2017
1 parent 0e9ee92 commit b642ff5
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.0
4.0
2 changes: 1 addition & 1 deletion FontBlaster.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "FontBlaster"
s.version = "3.0.4"
s.version = "4.0.0"
s.summary = "Programmatically load custom fonts into your iOS app."

s.description = <<-DESC
Expand Down
30 changes: 23 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,48 @@ Say goodbye to importing custom fonts via property lists as **FontBlaster** auto

## Installation Instructions

| Swift Version | Branch Name | Will Continue to Receive Updates?
| ------------- | ------------- | -------------
| 4.0 | master | **Yes**
| 3.2 | swift3.2 | No
| 3.1 | swift3.1 | No

#### CocoaPods
For Swift 3 support:
For Swift 4 support:
```ruby
pod 'FontBlaster'
```

For Swift 4 support:
For Swift 3.2 support:
```ruby
pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift3.2'
```

For Swift 3.1 support:
```ruby
pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift4'
pod 'FontBlaster', :git => 'https://github.com/ArtSabintsev/FontBlaster.git', :branch => 'swift3.1'
```

### Carthage
For Swift 3 support:
For Swift 4 support:

```swift
github "ArtSabintsev/FontBlaster"
```

For Swift 4 support:
For Swift 3.2 support:
```swift
github "ArtSabintsev/FontBlaster", "swift3.2"
```

For Swift 3.1 support:
```swift
github "ArtSabintsev/FontBlaster", "swift4"
github "ArtSabintsev/FontBlaster", "swift3.1"
```

### Swift Package Manager
``` swift
.Package(url: "https://github.com/ArtSabintsev/FontBlaster.git", majorVersion: 3)
.Package(url: "https://github.com/ArtSabintsev/FontBlaster.git", majorVersion: 4)
```

### Manual
Expand Down

0 comments on commit b642ff5

Please sign in to comment.