forked from Famolus/HTPressableButton
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTPressableButton.podspec
More file actions
23 lines (19 loc) · 875 Bytes
/
HTPressableButton.podspec
File metadata and controls
23 lines (19 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "HTPressableButton"
s.version = "1.3.2"
s.summary = "Pressable button with ease of use for iOS developers."
s.homepage = "http://github.com/herinkc/HTPressableButton"
s.license = { :type => "MIT", :file => "LICENSE" }
s.authors = { "He Rin Kim" => "me@herinkim.com", "Thanakron Tandavas" => "thanakron@tandavas.com" }
s.screenshot = "https://dl.dropboxusercontent.com/s/na4sowpi58dcajv/HTPressableButtonImage.gif"
s.platform = :ios, '6.0'
s.source = { :git => "https://github.com/herinkc/HTPressableButton.git", :tag => s.version }
s.requires_arc = true
s.default_subspec = "All"
s.subspec "All" do |all|
all.source_files = 'Classes', 'Classes/**/*.{h,m}'
end
s.subspec "HTColor" do |color|
color.source_files = "Classes/UIColor+HTColor.{h,m}"
end
end