-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathAnimatedGradientView.podspec
More file actions
17 lines (17 loc) · 972 Bytes
/
AnimatedGradientView.podspec
File metadata and controls
17 lines (17 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |s|
s.name = 'AnimatedGradientView'
s.version = '4.0.0'
s.swift_version = '5.0'
s.summary = 'Powerful gradient animations made simple for iOS.'
s.description = <<-DESC
AnimatedGradientView makes it simple to create animated or static gradiented views with support for axial, radial and conic gradients.
DESC
s.homepage = 'https://github.com/rwbutler/AnimatedGradientView'
s.screenshots = 'https://github.com/rwbutler/AnimatedGradientView/raw/master/docs/images/example.gif'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Ross Butler' => 'github@rwbutler.com' }
s.source = { :git => 'https://github.com/rwbutler/AnimatedGradientView.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/ross_w_butler'
s.ios.deployment_target = 11.0'
s.source_files = 'AnimatedGradientView/Classes/**/*'
end