forked from terminatorover/RGCardViewLayout
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathRGCardViewLayout.podspec
More file actions
19 lines (16 loc) · 842 Bytes
/
RGCardViewLayout.podspec
File metadata and controls
19 lines (16 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = "RGCardViewLayout"
s.version = "1.0"
s.summary = "Collection view card layout."
s.description = "This is a layout that clones the interaction of going through city \"cards\" in the City Guide App. (this app is #3 for the top iOS app animations on the raywenderlich)."
s.author = "Robera Geleta"
s.license = {:type => 'MIT', :file => 'LICENSE'}
s.homepage = "https://github.com/terminatorover/RGCardViewLayout"
s.platform = :ios, "6.0"
s.requires_arc = true
s.source = { :git => "https://github.com/terminatorover/RGCardViewLayout.git", :tag => "v1.0" }
s.frameworks = "UIKit", "Foundation", "CoreGraphics"
s.source_files = "RGCardViewLayout.{h,m}"
s.public_header_files = "RGCardViewLayout.h"
s.requires_arc = true
end