-
Notifications
You must be signed in to change notification settings - Fork 2
/
JModalController.podspec
28 lines (25 loc) · 1.2 KB
/
JModalController.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
#
# Be sure to run `pod lib lint JModalController.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "JModalController"
s.version = "0.2.0"
s.summary = "An easy way to create custom sliding modals."
s.description = "Easily create custom modals that allow for a customizability and personal design. Don't be confined to using UIAlertController."
s.homepage = "https://github.com/jacks205/JModalController"
s.screenshots = "https://raw.githubusercontent.com/jacks205/JModalController/master/images/jmodalcontroller.gif"
s.license = 'MIT'
s.author = { "Mark Jackson" => "[email protected]" }
s.source = { :git => "https://github.com/jacks205/JModalController.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/mjacks205'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
# s.resource_bundles = {
# 'JModalController' => ['Pod/Assets/*.png']
# }
end