-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMAMLPopSpringView.podspec
More file actions
39 lines (28 loc) · 1.54 KB
/
MAMLPopSpringView.podspec
File metadata and controls
39 lines (28 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#
# Be sure to run `pod spec lint MAMLPopSpringView.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |s|
s.name = "MAMLPopSpringView"
s.version = "0.0.1"
s.summary = "A view that animates out and back in when touched"
s.description = <<-DESC
This is experimental - It's a view with that renders a circle and a label that
when touched animates out and back in again.
To use - drage an instance of UIView to the storyboard and make its dimanesions
square. Set the following runtime attributes: onColor, onText, offColor, and offText.
And that's it.
The animations are currently not configurable.
DESC
s.homepage = "https://github.com/maml/popConsecutiveAnimationsEx"
s.screenshots = "https://raw.githubusercontent.com/maml/popConsecutiveAnimationsEx/master/pop-consecutive-animations-ex.gif"
s.license = "MIT"
s.author = { "Matthew Loseke" => "mloseke@gmail.com" }
s.social_media_url = "http://twitter.com/mattloseke"
s.platform = :ios, "7.0"
s.source = { :git => "git@github.com:maml/popConsecutiveAnimationsEx.git", :commit => "1dba102" }
s.source_files = "Library/", "Library/*.{h,m}"
end