forked from babylonhealth/DrawerKit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DrawerKit.podspec
21 lines (17 loc) · 961 Bytes
/
DrawerKit.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "DrawerKit"
s.version = "0.7.0"
s.summary = "An implementation of an interactive and animated view, similar to what you see in Apple Maps"
s.description = <<-DESC
DrawerKit allows you to modally present a view controller from another, in such a way that the
presented view controller slides up as a "drawer", much like what happens when you tap on a location
in the map when using the Apple Maps app. The library is highly configurable, with more options
being added regularly.
DESC
s.homepage = "https://github.com/Babylonpartners/DrawerKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Wagner Truppel" => "[email protected]" }
s.platform = :ios, "10.0"
s.source = { :git => "https://github.com/Babylonpartners/DrawerKit.git", :tag => "#{s.version}" }
s.source_files = "DrawerKit/**/*.{swift}"
end