-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathArrows.podspec
More file actions
18 lines (18 loc) · 789 Bytes
/
Arrows.podspec
File metadata and controls
18 lines (18 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "Arrows"
s.version = "1.0.0"
s.summary = "Arrow indicator view for sliding panels"
s.description = <<-DESC
Arrows is an animated custom view, made with Core Graphics, to represent three different states: `up/down/middle`
DESC
s.homepage = "https://github.com/antoniocasero/Arrows"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Antonio Casero Palmero" => "anto.casero@gmail.com" }
s.social_media_url = "@acaserop"
s.swift_version = "4.2"
s.ios.deployment_target = "11.0"
s.tvos.deployment_target = "11.0"
s.source = { :git => "https://github.com/antoniocasero/Arrows.git", :tag => s.version.to_s }
s.source_files = "Sources/**/*"
s.frameworks = "UIKit"
end