20 lines
750 B
Ruby
20 lines
750 B
Ruby
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.platform = :ios, "7.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'
|
|
|
|
end
|