-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFancyGradient.podspec
More file actions
19 lines (16 loc) · 843 Bytes
/
FancyGradient.podspec
File metadata and controls
19 lines (16 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "FancyGradient"
spec.version = "1.0.2"
spec.summary = "Powerful animated gradientView made simple for iOS"
spec.description = <<-DESC
FancyGradient makes it easy and simple to create animated or static gradient.
DESC
spec.homepage = "https://github.com/Nikoloutsos/fancyGradient"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "Konstantinos Nikoloutsos" => "konstantinosnikοlouts@gmail.com" }
spec.social_media_url = "https://twitter.com/KonstantinosN17"
spec.ios.deployment_target = "9.0"
spec.swift_version = "5.0"
spec.source = { :git => "https://github.com/Nikoloutsos/fancyGradient.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/FancyGradient/**/*.{h,m,swift}"
end