-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathRippleEffectView.podspec
21 lines (19 loc) · 1.09 KB
/
RippleEffectView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#
# Initial version created by Maximilian Alexander <[email protected]>
#
Pod::Spec.new do |s|
s.name = 'RippleEffectView'
s.version = '1.0.2'
s.summary = 'RippleEffectView - A Neat Rippling View Effect'
s.description = <<-DESC
RippleEffectView inspired by [https://www.raywenderlich.com/133224/how-to-create-an-uber-splash-screen](RayWenderlich.com) article How To Create an Uber Splash Screen
DESC
s.homepage = 'https://github.com/alsedi/RippleEffectView'
s.screenshots = 'https://raw.githubusercontent.com/alsedi/RippleEffectView/master/rippleEffectView1.gif', 'https://raw.githubusercontent.com/alsedi/RippleEffectView/master/rippleEffectView2.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.authors = { 'Alex Sergev' => ' [email protected]' }
s.source = { :git => 'https://github.com/alsedi/RippleEffectView.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
s.source_files = 'RippleEffectView/RippleEffectView.swift'
s.frameworks = 'UIKit'
end