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

Commit

Permalink
Add missing podspec file (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
omaralbeik authored Mar 4, 2023
1 parent 3cb025e commit a84b4d7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions M3UKit.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Pod::Spec.new do |s|
s.name = 'M3UKit'
s.version = '0.8.1'
s.summary = 'Modern framework for parsing m3u files'
s.description = <<-DESC
A modern framework for parsing m3u files.
DESC
s.homepage = 'https://github.com/omaralbeik/M3UKit'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Omar Albeik' => 'https://twitter.com/omaralbeik' }
s.module_name = 'M3UKit'
s.source = { :git => 'https://github.com/omaralbeik/M3UKit.git', :tag => s.version }
s.source_files = 'Sources/**/*.swift'
s.swift_versions = ['5.5', '5.6', '5.7']
s.ios.deployment_target = '11.0'
s.osx.deployment_target = '10.13'
s.tvos.deployment_target = '11.0'
end
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ The [Swift Package Manager](https://swift.org/package-manager/) is a tool for ma

```swift
dependencies: [
.package(url: "https://github.com/omaralbeik/M3UKit.git", from: "0.8.0")
.package(url: "https://github.com/omaralbeik/M3UKit.git", from: "0.8.1")
]
```

Expand All @@ -140,15 +140,15 @@ $ swift build
To integrate M3UKit into your Xcode project using [CocoaPods](https://cocoapods.org), specify it in your Podfile:

```rb
pod 'M3UKit', :git => 'https://github.com/omaralbeik/M3UKit.git', :tag => '0.8.0'
pod 'M3UKit', :git => 'https://github.com/omaralbeik/M3UKit.git', :tag => '0.8.1'
```

### Carthage

To integrate M3UKit into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your Cartfile:

```
github "omaralbeik/M3UKit" ~> 0.8.0
github "omaralbeik/M3UKit" ~> 0.8.1
```

### Manually
Expand Down

0 comments on commit a84b4d7

Please sign in to comment.