forked from motokiee/RippleAnimation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRippleAnimation.podspec
More file actions
20 lines (17 loc) · 825 Bytes
/
RippleAnimation.podspec
File metadata and controls
20 lines (17 loc) · 825 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.name = "RippleAnimation"
s.version = "0.2"
s.summary = "Inspired from Material Design Ripple Effects for iOS"
s.description = <<-DESC
- Easy way to use Ripple Effects is call `rippleAnimate` method for your UIView instances.
- `rippleAnimate` is UIView extension.
DESC
s.homepage = "https://github.com/mnat44/RippleAnimation"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Motoki Narita" => "m.nat44@gmail.com" }
s.social_media_url = "http://twitter.com/mo_to_44"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/mnat44/RippleAnimation.git", :tag => "0.2" }
s.source_files = "RippleAnimation/**/*.swift"
s.requires_arc = true
end