Skip to content

Commit 61bf248

Browse files
Add podspec (#5)
1 parent b7170bd commit 61bf248

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

SmoothGradient.podspec

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "SmoothGradient"
3+
spec.version = "1.0.0"
4+
spec.summary = "A SwiftUI package for creating smooth gradients using easing functions."
5+
6+
spec.homepage = "https://github.com/raymondjavaxx/SmoothGradient"
7+
spec.license = { :type => "MIT", :file => "LICENSE" }
8+
spec.author = { "Ramon Torres" => "[email protected]" }
9+
10+
spec.swift_version = "5.6"
11+
spec.ios.deployment_target = "14.0"
12+
spec.tvos.deployment_target = "14.0"
13+
spec.osx.deployment_target = "11.0"
14+
spec.watchos.deployment_target = "7.0"
15+
16+
spec.source = { :git => "https://github.com/raymondjavaxx/SmoothGradient.git", :tag => "#{spec.version}" }
17+
spec.source_files = "Sources/SmoothGradient/**/*.swift"
18+
end

0 commit comments

Comments
 (0)