This commit is contained in:
Михаил Капелько
2023-12-28 12:43:44 +03:00
parent ea661935b5
commit d66e42964d
14 changed files with 47 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1,2 +1,4 @@
.DS_Store .DS_Store
*.xcodeproj *.xcodeproj
*.xcworkspace
Pods

10
app/Podfile Normal file
View File

@@ -0,0 +1,10 @@
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '14.0'
# Source.
pod 'BusX', :path => '../mod/BusX'
target 'pesochnicza' do
use_frameworks!
end

16
app/Podfile.lock Normal file
View File

@@ -0,0 +1,16 @@
PODS:
- BusX (2023.12.28)
DEPENDENCIES:
- BusX (from `../mod/BusX`)
EXTERNAL SOURCES:
BusX:
:path: "../mod/BusX"
SPEC CHECKSUMS:
BusX: fd22c04ad544d131e66315c1a33d87d85b19712e
PODFILE CHECKSUM: c4bbd7cc826ceee472b0bbb53eb2d5dc7dd1f97e
COCOAPODS: 1.13.0

2
gen
View File

@@ -4,4 +4,4 @@ DIR=`dirname $0`
cd $DIR/app cd $DIR/app
xcodegen xcodegen
#pod install pod install

14
mod/BusX/BusX.podspec Normal file
View File

@@ -0,0 +1,14 @@
Pod::Spec.new do |s|
s.name = 'BusX'
s.version = '2023.12.28'
s.license = 'IVCS'
s.summary = 'Шина общения элементов приложения'
s.homepage = 'IVCS'
s.author = 'IVCS'
s.source = { :git => 'https://fake.com/FAKE.git', :tag => s.version }
s.source_files = 'src/**/*.swift'
s.swift_version = '5.2'
s.ios.deployment_target = '14.0'
end

View File

@@ -1,3 +1,4 @@
import BusX
import Combine import Combine
extension Cord { extension Cord {

View File

@@ -1,3 +1,4 @@
import BusX
import Combine import Combine
extension Cord { extension Cord {

View File

@@ -1,3 +1,4 @@
import BusX
import Combine import Combine
import SwiftUI import SwiftUI

View File

@@ -1,3 +1,4 @@
import BusX
import SwiftUI import SwiftUI
struct V: View { struct V: View {