Skip to content

Commit 2922d41

Browse files
author
Golovin Dmitrii Mikhaylovich
committed
Rename macro target
1 parent 28d715d commit 2922d41

File tree

57 files changed

+197
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+197
-13
lines changed

.gitignore

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
# Created by https://www.gitignore.io/api/swift,xcode,macos,fastlane,cocoapods
2+
# Edit at https://www.gitignore.io/?templates=swift,xcode,macos,fastlane,cocoapods
3+
4+
### temp folder ###
5+
temp/
6+
7+
### prebuild ###
8+
prebuildUtil/
9+
PrebuildSpecLocal
10+
vendor/
11+
12+
### xcpretty output ###
13+
result.json
14+
xcodebuild.log
15+
16+
### CocoaPods ###
17+
## CocoaPods GitIgnore Template
18+
19+
# CocoaPods - Only use to conserve bandwidth / Save time on Pushing
20+
# - Also handy if you have a large number of dependant pods
21+
# - AS PER https://guides.cocoapods.org/using/using-cocoapods.html NEVER IGNORE THE LOCK FILE
22+
Pods/
23+
Modules/OzonDesign/OzonDesignDemo/Pods/
24+
25+
### fastlane ###
26+
# fastlane - A streamlined workflow tool for Cocoa deployment
27+
#
28+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
29+
# screenshots whenever they are needed.
30+
# For more information about the recommended setup visit:
31+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
32+
33+
# autogenerated REEDME file with all lanes description
34+
fastlane/README.md
35+
36+
# fastlane specific
37+
fastlane/report.xml
38+
fastlane/xcov_output/
39+
40+
# deliver temporary files
41+
fastlane/Preview.html
42+
43+
# snapshot generated screenshots
44+
fastlane/screenshots/**/*.png
45+
fastlane/screenshots/screenshots.html
46+
47+
# scan temporary files
48+
fastlane/test_output
49+
.test/
50+
51+
### macOS ###
52+
# General
53+
.DS_Store
54+
.AppleDouble
55+
.LSOverride
56+
57+
# Icon must end with two \r
58+
Icon
59+
60+
# Thumbnails
61+
._*
62+
63+
# Files that might appear in the root of a volume
64+
.DocumentRevisions-V100
65+
.fseventsd
66+
.Spotlight-V100
67+
.TemporaryItems
68+
.Trashes
69+
.VolumeIcon.icns
70+
.com.apple.timemachine.donotpresent
71+
72+
# Directories potentially created on remote AFP share
73+
.AppleDB
74+
.AppleDesktop
75+
Network Trash Folder
76+
Temporary Items
77+
.apdisk
78+
79+
# vscode
80+
81+
.vscode/
82+
83+
84+
# Tools With Nice
85+
.tools/
86+
!.tools/nice
87+
88+
### Swift ###
89+
# Xcode
90+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
91+
92+
## Build generated
93+
.prebuild.log
94+
build/
95+
DerivedData/
96+
**/*generated.swift
97+
98+
## Various settings
99+
*.pbxuser
100+
!default.pbxuser
101+
*.mode1v3
102+
!default.mode1v3
103+
*.mode2v3
104+
!default.mode2v3
105+
*.perspectivev3
106+
!default.perspectivev3
107+
108+
## Other
109+
*.moved-aside
110+
*.xccheckout
111+
*.xcscmblueprint
112+
113+
## Obj-C/Swift specific
114+
*.hmap
115+
*.ipa
116+
*.dSYM.zip
117+
*.dSYM
118+
119+
## Playgrounds
120+
timeline.xctimeline
121+
playground.xcworkspace
122+
123+
# Swift Package Manager
124+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
125+
# Packages/
126+
# Package.pins
127+
Package.resolved
128+
.build/
129+
.swiftpm/
130+
# Add this line if you want to avoid checking in Xcode SPM integration.
131+
# .swiftpm/xcode
132+
133+
# CocoaPods
134+
# We recommend against adding the Pods directory to your .gitignore. However
135+
# you should judge for yourself, the pros and cons are mentioned at:
136+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
137+
# Pods/
138+
# Add this line if you want to avoid checking in source code from the Xcode workspace
139+
# *.xcworkspace
140+
141+
# Carthage
142+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
143+
# Carthage/Checkouts
144+
145+
Carthage/Build
146+
147+
# Accio dependency management
148+
Dependencies/
149+
.accio/
150+
151+
# fastlane
152+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
153+
# screenshots whenever they are needed.
154+
# For more information about the recommended setup visit:
155+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
156+
157+
158+
# Code Injection
159+
# After new code Injection tools there's a generated folder /iOSInjectionProject
160+
# https://github.com/johnno1962/injectionforxcode
161+
162+
iOSInjectionProject/
163+
164+
### Xcode ###
165+
# Xcode
166+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
167+
168+
*.xcodeproj
169+
*.xcworkspace
170+
*.entitlements
171+
172+
Derived
173+
.package.resolved
174+
175+
## compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
176+
177+
## compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
178+
179+
# End of https://www.gitignore.io/api/swift,xcode,macos,fastlane,cocoapods
180+
181+
# SwiftLint Remote Config Cache
182+
.swiftlint/RemoteConfigCache
183+
.DS_Store
184+
Package.resolved

Package.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@ let package = Package(
2121
],
2222
targets: [
2323
.macro(
24-
name: "TestingMacros",
24+
name: "OzonTestingMacros",
2525
dependencies: [
2626
.product(name: "SwiftSyntaxMacros", package: "swift-syntax"),
2727
.product(name: "SwiftCompilerPlugin", package: "swift-syntax"),
2828
]
2929
),
30-
.target(name: "TestingMacroCollection", dependencies: ["TestingMacros"]),
30+
.target(name: "TestingMacroCollection", dependencies: ["OzonTestingMacros"]),
3131
.executableTarget(name: "TestingMacroCollectionSandbox", dependencies: ["TestingMacroCollection"]),
3232
.testTarget(
3333
name: "TestingMacroCollectionTests",
3434
dependencies: [
3535
"TestingMacroCollection",
36-
"TestingMacros",
36+
"OzonTestingMacros",
3737
.product(name: "SwiftSyntaxMacrosTestSupport", package: "swift-syntax"),
3838
]
3939
),

0 commit comments

Comments
 (0)