- 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>
39 lines
1.0 KiB
Ruby
39 lines
1.0 KiB
Ruby
require 'json'
|
|
|
|
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
|
|
|
|
Pod::Spec.new do |s|
|
|
s.name = 'ExpoFileSystem'
|
|
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',
|
|
:osx => '10.15',
|
|
:tvos => '13.4'
|
|
}
|
|
s.swift_version = '5.4'
|
|
s.source = { :git => 'https://github.com/expo/expo.git' }
|
|
s.static_framework = true
|
|
|
|
s.dependency 'ExpoModulesCore'
|
|
|
|
# Swift/Objective-C compatibility
|
|
s.pod_target_xcconfig = {
|
|
'DEFINES_MODULE' => 'YES'
|
|
}
|
|
|
|
s.resource_bundles = {'ExpoFileSystem_privacy' => ['PrivacyInfo.xcprivacy']}
|
|
|
|
s.source_files = "**/*.{h,m,swift}"
|
|
|
|
s.exclude_files = 'Tests/'
|
|
s.test_spec 'Tests' do |test_spec|
|
|
test_spec.dependency 'ExpoModulesTestCore'
|
|
test_spec.source_files = 'Tests/**/*.{m,swift}'
|
|
end
|
|
end
|