-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathGlideshow.podspec
More file actions
22 lines (17 loc) · 911 Bytes
/
Copy pathGlideshow.podspec
File metadata and controls
22 lines (17 loc) · 911 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |spec|
spec.name = "Glideshow"
spec.version = "1.1.1"
spec.summary = "A slideshow written in Swift 5 that adds transitions to labels within a slide"
spec.description = <<-DESC
This library allows developers to stray away from conventionals slideshows by adding transitions to the labels within the Slides
DESC
spec.homepage = "https://github.com/v15a1/Glideshow"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Visal Rajapakse" => "visalrajapakse@gmail.com" }
spec.platform = :ios, "11.0"
spec.ios.deployment_target = "11.0"
spec.swift_version = "5"
spec.source = { :git => "https://github.com/v15a1/Glideshow.git", :tag => "#{spec.version}" }
spec.source_files = "Glideshow", "Glideshow/**/*.{h,m}"
spec.exclude_files = "GlideshowExample/**", "GlideshowTests/**"
end