forked from VladimirDinic/WDColorPicker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWDColorPicker.podspec
More file actions
20 lines (15 loc) · 824 Bytes
/
Copy pathWDColorPicker.podspec
File metadata and controls
20 lines (15 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.platform = :ios
s.name = "WDColorPicker"
s.version = "1.0.1"
s.summary = "WDColorPicker is a simple lightweight component for displaying color picker inside iOS apps."
s.description = <<-DESC
This library enables you to include color picker very easy in your iOS app, and to use it in two basic modes: as interface component, or as a pop up.
DESC
s.homepage = "https://github.com/VladimirDinic/WDColorPicker"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Vladimir Dinic" => "vladimir88dev@gmail.com" }
s.source = { :git => "https://github.com/VladimirDinic/WDColorPicker.git", :tag => "#{s.version}"}
s.ios.deployment_target = "10.0"
s.source_files = "WDColorPicker/WDColorPicker/WDColorPickerView/*"
end