- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'EXSplashScreen'
|
|
s.version = package['version']
|
|
s.summary = package['description']
|
|
s.description = package['description']
|
|
s.license = package['license']
|
|
s.author = package['author']
|
|
s.homepage = package['homepage']
|
|
s.platforms = { :ios => '13.4', :tvos => '13.4' }
|
|
s.source = { git: 'https://github.com/expo/expo.git' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
s.dependency 'React-Core'
|
|
|
|
unless defined?(install_modules_dependencies)
|
|
# `install_modules_dependencies` is defined from react_native_pods.rb.
|
|
# when running with `pod ipc spec`, this method is not defined and we have to require manually.
|
|
require File.join(File.dirname(`node --print "require.resolve('react-native/package.json')"`), "scripts/react_native_pods")
|
|
end
|
|
install_modules_dependencies(s)
|
|
|
|
if !$ExpoUseSources&.include?(package['name']) && ENV['EXPO_USE_SOURCE'].to_i == 0 && File.exist?("#{s.name}.xcframework") && Gem::Version.new(Pod::VERSION) >= Gem::Version.new('1.10.0')
|
|
s.source_files = "#{s.name}/**/*.h"
|
|
s.vendored_frameworks = "#{s.name}.xcframework"
|
|
else
|
|
s.source_files = "#{s.name}/**/*.{h,m}"
|
|
end
|
|
end
|