-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLCModal.podspec
More file actions
19 lines (17 loc) · 872 Bytes
/
LCModal.podspec
File metadata and controls
19 lines (17 loc) · 872 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 = "LCModal"
s.version = File.read('VERSION')
s.summary = "An Objective-C category to present a semi modal view controller"
s.description = <<-DESC
An Objective-C category to present a semi modal view controller with a nice push back effect for the presenting view controller.
DESC
s.homepage = "https://github.com/ThXou/LCModal"
s.screenshots = "https://raw.githubusercontent.com/ThXou/LCModal/master/screenshot_1.png"
s.license = 'MIT'
s.author = { "ThXou" => "yo@thxou.com" }
s.source = { :git => "https://github.com/ThXou/LCModal.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/thxou'
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Source'
end