forked from morizotter/SwiftyDrop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwiftyDrop.podspec
More file actions
19 lines (18 loc) · 865 Bytes
/
SwiftyDrop.podspec
File metadata and controls
19 lines (18 loc) · 865 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 = "SwiftyDrop"
s.version = "4.2.0"
s.summary = "SwiftyDrop is a lightweight pure Swift simple and beautiful dropdown message."
s.description = <<-DESC
SwiftyDrop is a lightweight pure Swift simple and beautiful dropdown message.
- Easy to use like: `Drop.down("Message")`
- Expand message field depends on the message.
DESC
s.homepage = "https://github.com/morizotter/SwiftyDrop"
s.license = "MIT"
s.author = { "Naoki Morita" => "namorit@gmail.com" }
s.social_media_url = "http://twitter.com/morizotter"
s.source = { :git => "https://github.com/morizotter/SwiftyDrop.git", :tag => s.version.to_s }
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'SwiftyDrop/**/*.swift'
end