- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBVLinearGradient.podspec
More file actions
Latest commit
21 lines (17 loc) · 760 Bytes
/
Copy pathBVLinearGradient.podspec
File metadata and controls
21 lines (17 loc) · 760 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.newdo |s|
s.name="BVLinearGradient"
s.version=version
s.homepage="https://github.com/brentvatne/react-native-linear-gradient"
s.summary="A <LinearGradient /> component for react-native"
s.license="MIT"
s.author={"Brent Vatne"=>"brentvatne@gmail.com"}
s.ios.deployment_target='9.0'
s.tvos.deployment_target='9.0'
s.source={:git=>"https://github.com/brentvatne/react-native-linear-gradient.git",:tag=>"v#{s.version}"}
s.source_files='ios/*.{h,m}'
s.preserve_paths="**/*.js"
s.frameworks='UIKit','QuartzCore','Foundation'
s.dependency'React'
end