-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathShift.podspec
More file actions
25 lines (19 loc) · 1.07 KB
/
Shift.podspec
File metadata and controls
25 lines (19 loc) · 1.07 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
Pod::Spec.new do |s|
s.name = "Shift"
s.version = "0.0.1"
s.summary = "A library of custom iOS View Controller Animations and Interactions written in Swift."
s.description = <<-DESC
Shift is a library of custom iOS View Controller Animations and Interactions written
in Swift.
DESC
s.homepage = "https://github.com/Raizlabs/Shift"
s.screenshots = "https://raw.githubusercontent.com/Raizlabs/Shift/master/SplitTransition.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "Matt Buckley" => "matt.buckley@raizlabs.com", "John Watson" => "john.watson@raizlabs.com" }
s.social_media_url = "http://twitter.com/Raizlabs"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/Raizlabs/Shift.git", :tag => "#{s.version}" }
s.source_files = "Source/*/*.swift", "Source/*/*.h"
s.frameworks = "UIKit"
s.requires_arc = true
end