-
Notifications
You must be signed in to change notification settings - Fork 2
/
UIImage+MMLaunchImage.podspec
31 lines (25 loc) · 1.35 KB
/
UIImage+MMLaunchImage.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
31
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "UIImage+MMLaunchImage"
s.version = "1.0.3"
s.summary = "Returns the current launch image 'Default.png' for an iOS app, depending on OS version, device and orientation."
s.description = <<-DESC
Returns the current launch image 'Default.png' for an iOS app
* Can deal with iOS7 and iOS6 style launch images
* Deals with different orientations
* Deals with iPhone and iPad idioms
* Useful for displaying after launch, to create a fade into your app or waiting for an interstitial
DESC
s.homepage = "https://github.com/matthewmayer/MMLaunchImage"
s.license = 'MIT'
s.author = 'Matt Mayer'
s.platform = :ios, '5.0'
s.source = { :git => "https://github.com/matthewmayer/MMLaunchImage.git" }
s.source_files = '*.{h,m}'
s.requires_arc = true
end