-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMSPTouchableLabel.podspec
More file actions
18 lines (18 loc) · 997 Bytes
/
MSPTouchableLabel.podspec
File metadata and controls
18 lines (18 loc) · 997 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = "MSPTouchableLabel"
s.version = "0.5.0"
s.summary = "UILabel subclass with UITableView -like data source and delegate for easy dynamic labels."
s.description = <<-DESC
The MSPTouchableLabel class is a UILabel subclass which provides an interface
for easy interaction and updates. It offers a data source and delegate for
you to dynamically update its contents.
DESC
s.homepage = "https://github.com/michaelpace/MSPTouchableLabel"
s.screenshots = "http://i.imgur.com/5sxXxBR.gif", "http://i.imgur.com/zwvMlp2.gif", "http://i.imgur.com/IzkJmff.gif", "http://i.imgur.com/vGlygCp.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Michael Pace" => "mpace1027@gmail.com" }
s.platform = :ios
s.source = { :git => "https://github.com/michaelpace/MSPTouchableLabel.git", :tag => "0.5.0" }
s.source_files = "Source/MSPTouchableLabel.{h,m}"
s.requires_arc = true
end