react-native-languages/ReactNativeLanguages.podspec

18 lines
651 B
Plaintext
Raw Normal View History

2017-08-01 16:44:14 +00:00
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |spec|
spec.name = "ReactNativeLanguages"
spec.summary = "React Native properties and methods related to the language of the device"
spec.version = package['version']
spec.authors = { "Mathieu Acthernoene" => "zoontek@gmail.com" }
spec.homepage = "https://github.com/react-community/react-native-languages"
spec.license = "MIT"
spec.platform = :ios, "8.0"
spec.source = { :git => "https://github.com/react-community/react-native-languages.git" }
spec.source_files = "ios/**/*.{h,m}"
end