-
Notifications
You must be signed in to change notification settings - Fork 46
/
MaryPopin.podspec
29 lines (20 loc) · 1.06 KB
/
MaryPopin.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
Pod::Spec.new do |s|
s.name = "MaryPopin"
s.version = "1.4.3"
s.summary = "Category to display modal-like view controllers with more options"
s.description = <<-DESC
MaryPopin is a category to present view controllers in a supercalifragilisticexpialidocious way.
More precisely, it allows you to present modal-like view controllers with a custom size and a larger choice of transitions.
On iOS 7, it can use motion effects and UIKit Dynamics for even better looking popins.
DESC
s.homepage = "https://github.com/Backelite/MaryPopin"
s.social_media_url = 'https://twitter.com/AgenceBackelite'
s.screenshot = "https://raw.githubusercontent.com/Backelite/MaryPopin/master/MaryPopin.gif"
s.license = 'MIT'
s.author = "Backelite"
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/Backelite/MaryPopin.git", :tag => "1.4.3" }
s.source_files = 'MaryPopin/**/*.{h,m}'
s.framework = 'UIKit'
s.requires_arc = true
end