-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathWyler.podspec
More file actions
27 lines (22 loc) · 1.01 KB
/
Wyler.podspec
File metadata and controls
27 lines (22 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Be sure to run `pod lib lint Wyler.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "Wyler"
s.version = "1.0.1"
s.summary = "Screen Recording Made Easy."
s.description = <<-DESC
A light library written in Swift that simplifies screen recording on iOS. You can record your app screen, access the recorded video, and optionally save it to the Photo Library.
DESC
s.homepage = "https://github.com/toupper/Wyler"
s.license = 'MIT'
s.author = { "César Vargas Casaseca" => "c.vargas.casaseca@gmail.com" }
s.source = { :git => "https://github.com/toupper/Wyler.git", :tag => "v#{s.version}" }
s.ios.deployment_target = '11.0'
s.requires_arc = true
s.ios.source_files = 'Wyler/Wyler/**/*.{h,m,swift}'
s.swift_version = "5.9"
end