Михаил Капелько 4 months ago
parent
commit
d66e42964d
14 changed files with 47 additions and 1 deletions
  1. +2
    -0
      .gitignore
  2. +10
    -0
      app/Podfile
  3. +16
    -0
      app/Podfile.lock
  4. +1
    -1
      gen
  5. +14
    -0
      mod/BusX/BusX.podspec
  6. +0
    -0
      mod/BusX/src/Bus.Aux.swift
  7. +0
    -0
      mod/BusX/src/Bus.Processor.swift
  8. +0
    -0
      mod/BusX/src/Bus.Receiver.swift
  9. +0
    -0
      mod/BusX/src/Bus.Sender.swift
  10. +0
    -0
      mod/BusX/src/Bus.swift
  11. +1
    -0
      src/Cord.Button.swift
  12. +1
    -0
      src/Cord.Receive.swift
  13. +1
    -0
      src/Cord.TextField.swift
  14. +1
    -0
      src/V.swift

+ 2
- 0
.gitignore View File

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

+ 10
- 0
app/Podfile 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
- 0
app/Podfile.lock 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

+ 1
- 1
gen View File

@@ -4,4 +4,4 @@ DIR=`dirname $0`

cd $DIR/app
xcodegen
#pod install
pod install

+ 14
- 0
mod/BusX/BusX.podspec 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

src/Bus.Aux.swift → mod/BusX/src/Bus.Aux.swift View File


src/Bus.Processor.swift → mod/BusX/src/Bus.Processor.swift View File


src/Bus.Receiver.swift → mod/BusX/src/Bus.Receiver.swift View File


src/Bus.Sender.swift → mod/BusX/src/Bus.Sender.swift View File


src/Bus.swift → mod/BusX/src/Bus.swift View File


+ 1
- 0
src/Cord.Button.swift View File

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

extension Cord {


+ 1
- 0
src/Cord.Receive.swift View File

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

extension Cord {


+ 1
- 0
src/Cord.TextField.swift View File

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



+ 1
- 0
src/V.swift View File

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

struct V: View {


Loading…
Cancel
Save