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