Files
react-native-mail/react-native-mail.podspec
T

19 lines
590 B
Ruby

require 'json'
pjson = JSON.parse(File.read('package.json'))
Pod::Spec.new do |s|
s.name = pjson["name"]
s.version = pjson["version"]
s.homepage = "https://github.com/chirag04/react-native-mail"
s.summary = pjson["description"]
s.license = pjson["license"]
s.author = { "Chirag Jain" => "jain_chirag04@yahoo.com" }
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/chirag04/react-native-mail", :tag => "#{s.version}" }
s.source_files = 'RNMail/*.{h,m}'
s.dependency 'React'
end