Skip to content

Commit b1b0ca4

Browse files
Teamcity AccountVladislav Alekseev
Teamcity Account
authored and
Vladislav Alekseev
committed
Merge pull request #16908 in MA/avito-ios from MBS-9698_add_copybara_for_exporting_command_line_toolkit to develop
Automatically merge pull request #16908 in MA/avito-ios from MBS-9698_add_copybara_for_exporting_command_line_toolkit to develop * commit 'b41ad5d3d089367510a59347949225f078c4ef12': MBS-9698: add entrypoint and copybara config for exporting CommandLineToolkit GitOrigin-RevId: d156b1218ed612cd13c85da05c1b4729c7fb6e7b
1 parent 1cf4016 commit b1b0ca4

File tree

6 files changed

+2
-128
lines changed

6 files changed

+2
-128
lines changed

.gitignore

-4
This file was deleted.

Makefile

-20
This file was deleted.

Package.swift

-24
This file was deleted.

Package.xcconfig

-2
This file was deleted.

README.md

+2-23
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,3 @@
1-
# Avito Shared Utils
2-
3-
Swift package that provides some basic shareable utility classes.
4-
5-
## Developing
6-
7-
- `make open` to generate Xcode project and open it in Xcode
8-
- `make test` to run all unit tests using SPM
9-
- `make build` to build all products using SPM
10-
11-
## Timer
12-
13-
A GCD-based timer.
14-
15-
```swift
16-
let timer = DispatchBasedTimer.startedTimer(repeating: .seconds(1), leeway: .seconds(1)) { [weak self] timer in
17-
guard let strongSelf = self else {
18-
timer.stop()
19-
return
20-
}
21-
strongSelf.handleTimerTick()
22-
}
23-
```
1+
# CommandLineToolkit
242

3+
Various things that make it easier to implement command line tools.

Sources/Timer/DispatchBasedTimer.swift

-55
This file was deleted.

0 commit comments

Comments
 (0)