-
Notifications
You must be signed in to change notification settings - Fork 1
/
Shifty.podspec
30 lines (26 loc) · 1.32 KB
/
Shifty.podspec
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
28
29
30
#
# Be sure to run `pod lib lint Shifty.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'Shifty'
s.version = '3.3.0'
s.summary = 'A small transitioning library that aims to make performing frame shifts easier.'
s.description = <<-DESC
Shifty is a small transitioning library designed to make creating frame shift view controller transitions much simpler.
Written entirely in Swift, Shifty aims to abstract away the boilerplate math and coordinate space conversions needed to
make these transitions seamless. This, combined with a multiple of customization points and options allows you to focus
on creating the transition that is custom to your app.
DESC
s.homepage = 'https://github.com/wmcginty/Shifty'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'William McGinty' => 'mcgintw@gmail.com' }
s.source = { :git => 'https://github.com/wmcginty/Shifty.git', :tag => s.version.to_s }
s.swift_version = '5.5'
s.ios.deployment_target = '11.0'
s.source_files = 'Sources/Shifty/**/*'
s.frameworks = 'UIKit'
end