Initial release

This commit is contained in:
Mathieu Acthernoene
2017-08-01 18:44:14 +02:00
commit 7587c40111
64 changed files with 4978 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
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