-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTMAnimatedTextView.podspec
More file actions
21 lines (18 loc) · 994 Bytes
/
TMAnimatedTextView.podspec
File metadata and controls
21 lines (18 loc) · 994 Bytes
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 = "TMAnimatedTextView"
s.version = "1.0.0"
s.summary = "A UITextView subclass that allows animating NSTextAttachment attachments."
s.description = <<-DESC
The basic UITextView allows you to attach images however it does not allow you to
animate each individual attachment in the text view. This component allows you to
add an image attachment and animate that attachment.
DESC
s.homepage = "https://github.com/TapMesh/TMAnimatedTextView"
s.license = "Apache License, Version 2.0"
s.author = { "bobwieler" => "bob.wieler@tapmesh.com" }
s.social_media_url = "http://twitter.com/bobwieler"
s.platform = :ios, '7.1'
s.source = { :git => "https://github.com/TapMesh/TMAnimatedTextView.git", :tag => s.version.to_s }
s.source_files = "TMAnimatedTextView", "TMAnimatedTextView/**/*.{h,m}"
s.requires_arc = true
end