Skip to content

Commit 98c5feb

Browse files
author
Cesar Vargas Casaseca
committed
Add podspec and correct readme
1 parent 7779275 commit 98c5feb

File tree

2 files changed

+27
-12
lines changed

2 files changed

+27
-12
lines changed

README.md

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -59,18 +59,6 @@ import Wyler
5959
```ogdl
6060
github "toupper/Wyler"
6161
```
62-
63-
### Swift Package Manager
64-
65-
The [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. It is in early development, but Alamofire does support its use on supported platforms.
66-
67-
Once you have your Swift package set up, adding Wyler as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`.
68-
69-
```swift
70-
dependencies: [
71-
.package(url: "https://github.com/toupper/Wyler.git", .upToNextMajor(from: "0.1.2"))
72-
]
73-
```
7462
## Manually
7563

7664
You can also integrate Wyler into your project manually.

Wyler.podspec

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
#
2+
# Be sure to run `pod lib lint Wyler.podspec' to ensure this is a
3+
# valid spec and remove all comments before submitting the spec.
4+
#
5+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
6+
#
7+
8+
Pod::Spec.new do |s|
9+
s.name = "Wyler"
10+
s.version = "0.1"
11+
s.summary = "Screen Recording Made Easy."
12+
s.description = <<-DESC
13+
A light library written in Swift that makes easy the process of Screen Recording for IOS. You can record your app video screen, access to the recorded video, and save it to the Photo Library.
14+
DESC
15+
s.homepage = "https://github.com/toupper/Wyler"
16+
s.license = 'MIT'
17+
s.author = { "César Vargas Casaseca" => "[email protected]" }
18+
s.source = { :git => "https://github.com/toupper/Wyler.git", :tag => s.version.to_s }
19+
20+
s.ios.deployment_target = '11.0'
21+
22+
s.requires_arc = true
23+
24+
s.ios.source_files = 'Wyler/Wyler/**/*.{h,m,swift}'
25+
26+
s.swift_version = "5.2"
27+
end

0 commit comments

Comments
 (0)