mirror of
https://github.com/status-im/react-native-mail.git
synced 2026-08-27 17:51:12 +00:00
19 lines
596 B
Ruby
19 lines
596 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 => "v#{s.version}" }
|
|
s.source_files = 'RNMail/*.{h,m}'
|
|
|
|
s.dependency 'React-Core'
|
|
|
|
end
|