1 2Pod::Spec.new do |s| 3 s.name = "ExpoKit" 4 s.version = "${IOS_EXPONENT_CLIENT_VERSION}" 5 s.summary = 'ExpoKit' 6 s.description = 'ExpoKit allows native projects to integrate with the Expo SDK.' 7 s.homepage = 'http://docs.expo.io' 8 s.license = 'BSD' 9 s.author = "650 Industries, Inc." 10 s.requires_arc = true 11 s.platform = :ios, "9.0" 12 s.source = { :git => "http://github.com/exponent/exponent.git" } 13 s.source_files = "ios/Exponent/**/*.{h,m}" 14 s.preserve_paths = "ios/Exponent/**/*.{h,m}" 15 s.exclude_files = "ios/Exponent/EXAppDelegate.*", "ios/Exponent/EXRootViewController.*", "ios/Exponent/Supporting/**" 16 17${IOS_EXPONENT_VIEW_DEPS} 18end 19