You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
777 B
20 lines
777 B
require 'json'
|
|
version = JSON.parse(File.read('package.json'))["version"]
|
|
|
|
Pod::Spec.new do |s|
|
|
|
|
s.name = "RNVectorIcons"
|
|
s.version = version
|
|
s.summary = "Customizable Icons for React Native with support for NavBar/TabBar, image source and full styling."
|
|
s.homepage = "https://github.com/oblador/react-native-vector-icons"
|
|
s.license = "MIT"
|
|
s.author = { "Joel Arvidsson" => "joel@oblador.se" }
|
|
s.platforms = { :ios => "9.0", :tvos => "9.0" }
|
|
s.source = { :git => "https://github.com/oblador/react-native-vector-icons.git", :tag => "v#{s.version}" }
|
|
s.source_files = 'RNVectorIconsManager/**/*.{h,m}'
|
|
s.resources = "Fonts/*.ttf"
|
|
s.preserve_paths = "**/*.js"
|
|
s.dependency 'React-Core'
|
|
|
|
end
|