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