-
-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathreact-native-shimmer.podspec
More file actions
21 lines (18 loc) · 753 Bytes
/
react-native-shimmer.podspec
File metadata and controls
21 lines (18 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'json'
package = JSON.parse(File.read('package.json'))
version = package["version"]
Pod::Spec.new do |s|
s.name = 'react-native-shimmer'
s.version = version
s.homepage = 'https://github.com/oblador/react-native-shimmer'
s.license = "MIT"
s.author = { "Joel Arvidsson" => "joel@oblador.se" }
s.summary = 'Simple shimmering effect for React Native.'
s.source = { :git => 'https://github.com/oblador/react-native-shimmer.git', :tag => "v#{s.version}" }
s.source_files = 'ios/{,Shimmer/FBShimmering/}*.{h,m}'
s.preserve_paths = "**/*.js"
s.requires_arc = true
s.platform = :ios, "9.0"
s.dependency 'React-Core'
s.dependency 'Shimmer', '~> 1'
end