1bef625a4SBen Roth 2*335453f7SBen Roth# generated from template-files/ios/ExpoKit.podspec 3*335453f7SBen Roth 4bef625a4SBen RothPod::Spec.new do |s| 5bef625a4SBen Roth s.name = "ExpoKit" 6bef625a4SBen Roth s.version = "${IOS_EXPONENT_CLIENT_VERSION}" 7bef625a4SBen Roth s.summary = 'ExpoKit' 8bef625a4SBen Roth s.description = 'ExpoKit allows native projects to integrate with the Expo SDK.' 9bef625a4SBen Roth s.homepage = 'http://docs.expo.io' 10bef625a4SBen Roth s.license = 'BSD' 11bef625a4SBen Roth s.author = "650 Industries, Inc." 12bef625a4SBen Roth s.requires_arc = true 13bef625a4SBen Roth s.platform = :ios, "9.0" 14*335453f7SBen Roth s.default_subspec = "Core" 15*335453f7SBen Roth s.source = { :git => "http://github.com/expo/expo.git" } 16bef625a4SBen Roth 17*335453f7SBen Roth s.subspec "Core" do |ss| 18*335453f7SBen Roth ss.source_files = "ios/Exponent/**/*.{h,m}" 19*335453f7SBen Roth ss.preserve_paths = "ios/Exponent/**/*.{h,m}" 20*335453f7SBen Roth ss.exclude_files = "ios/Exponent/EXAppDelegate.*", "ios/Exponent/EXRootViewController.*", "ios/Exponent/Supporting/**" 21*335453f7SBen Roth 22*335453f7SBen Roth${IOS_EXPOKIT_DEPS} 23*335453f7SBen Roth end 24*335453f7SBen Roth 25*335453f7SBen Roth s.subspec "CPP" do |ss| 26*335453f7SBen Roth ss.dependency "ExpoKit/Core" 27*335453f7SBen Roth ss.source_files = 'cpp/*.{h,c,cpp,m,mm}', 'cpp/**/*.{h,c,cpp,m,mm}' 28*335453f7SBen Roth end 29bef625a4SBen Rothend 30