require 'json' package = JSON.parse(File.read(File.join(__dir__, 'package.json'))) Pod::Spec.new do |s| s.name = "action-sheet-ios" s.version = package['version'] s.summary = "ActionSheetIOS" s.authors = { "skevy" => "adam@sk3vy.com" } s.homepage = "https://github.com/react-native-contrib/action-sheet-ios#readme" s.license = "BSD-3-Clause" s.platform = :ios, "8.0" s.source = { :git => "https://github.com/react-native-contrib/action-sheet-ios.git" } s.source_files = "ios/**/*.{h,m}" s.dependency 'React' end