forked from christianbaroni/react-native-radial-gradient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSRSRadialGradient.podspec
More file actions
21 lines (17 loc) · 809 Bytes
/
SRSRadialGradient.podspec
File metadata and controls
21 lines (17 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'json'
version = JSON.parse(File.read('./package.json'))["version"]
Pod::Spec.new do |s|
s.name = "SRSRadialGradient"
s.version = version
s.homepage = "https://github.com/surajitsarkar19/react-native-radial-gradient"
s.summary = "A <RadialGradient /> component for react-native"
s.license = "MIT"
s.author = { "Surajit Sarkar" => "surajitsarkar19@surajitsarkar19.com" }
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "https://github.com/surajitsarkar19/react-native-radial-gradient.git", :tag => "v#{s.version}" }
s.source_files = 'ios/SRSRadialGradient/*.{h,m}'
s.preserve_paths = "**/*.js"
s.frameworks = 'UIKit', 'QuartzCore', 'Foundation'
s.dependency 'React'
end