forked from orenk86/ARSlidingPanel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathARSlidingPanel.podspec
More file actions
28 lines (18 loc) · 851 Bytes
/
ARSlidingPanel.podspec
File metadata and controls
28 lines (18 loc) · 851 Bytes
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
Pod::Spec.new do |s|
s.name = "ARSlidingPanel"
s.version = "0.1.0"
s.summary = "ARSlidingPanel is a realization of sliding-up panel for iOS"
s.description = <<-DESC
ARSlidingPanel is and iOS framework that allows to use 'Google Play Music - like' sliding-up panel in your application
DESC
s.homepage = "https://github.com/andriirogulin/ARSlidingPanel"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Andrii Rogulin" => "andrii.rogulin@gmail.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/andriirogulin/ARSlidingPanel.git", :tag => s.version.to_s }
s.source_files = 'Classes/*.{h,m}'
s.exclude_files = "Classes/Exclude"
s.public_header_files = "Classes/*.h"
s.framework = "UIKit"
s.requires_arc = true
end