Skip to content

Commit c6b6c13

Browse files
committed
Move Compound Inspector into the project.
1 parent 90eeabf commit c6b6c13

33 files changed

+1828
-0
lines changed

compound-ios/.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
.DS_Store
2+
/.build
3+
/Packages
4+
/*.xcodeproj
5+
xcuserdata/
6+
DerivedData/
7+
.swiftpm/config/registries.json
8+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
9+
.netrc
10+
.nova
11+
node_modules
12+
13+
# Cocoapods in Inspector app
14+
Inspector/Pods
15+
16+
# Ridiculous workaround to unignore the Package.resolved file to keep Xcode Cloud happy.
17+
# https://stackoverflow.com/a/16318111/730924
18+
Inspector/Inspector.xcworkspace/*
19+
!Inspector/Inspector.xcworkspace/xcshareddata
20+
Inspector/Inspector.xcworkspace/xcshareddata/*
21+
!Inspector/Inspector.xcworkspace/xcshareddata/swiftpm
22+
Inspector/Inspector.xcworkspace/xcshareddata/swiftpm/*
23+
!Inspector/Inspector.xcworkspace/xcshareddata/swiftpm/Package.resolved

compound-ios/Inspector/Inspector.xcodeproj/project.pbxproj

Lines changed: 534 additions & 0 deletions
Large diffs are not rendered by default.

compound-ios/Inspector/Inspector.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

compound-ios/Inspector/Inspector.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 14 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>FILEHEADER</key>
6+
<string>
7+
// Copyright ___YEAR___ New Vector Ltd
8+
//
9+
// SPDX-License-Identifier: AGPL-3.0-only
10+
// Please see LICENSE in the repository root for full details.
11+
//</string>
12+
</dict>
13+
</plist>

compound-ios/Inspector/Inspector.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 68 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compound-ios/Inspector/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
platform :ios, '16.0'
2+
3+
target 'Compound Inspector' do
4+
# Comment the next line if you don't want to use dynamic frameworks
5+
use_frameworks!
6+
7+
pod "HyperioniOS"
8+
end
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
PODS:
2+
- HyperioniOS (1.2.0):
3+
- HyperioniOS/AttributesInspector (= 1.2.0)
4+
- HyperioniOS/Core (= 1.2.0)
5+
- HyperioniOS/Measurements (= 1.2.0)
6+
- HyperioniOS/SlowAnimations (= 1.2.0)
7+
- HyperioniOS/AttributesInspector (1.2.0):
8+
- HyperioniOS/Core
9+
- HyperioniOS/Core (1.2.0)
10+
- HyperioniOS/Measurements (1.2.0):
11+
- HyperioniOS/Core
12+
- HyperioniOS/SlowAnimations (1.2.0):
13+
- HyperioniOS/Core
14+
15+
DEPENDENCIES:
16+
- HyperioniOS
17+
18+
SPEC REPOS:
19+
trunk:
20+
- HyperioniOS
21+
22+
SPEC CHECKSUMS:
23+
HyperioniOS: 4412ec61a390caadffcaaf3364733b06e103cf63
24+
25+
PODFILE CHECKSUM: 30e97949fb1de5c74fc24378bbfdbbace5bd8b80
26+
27+
COCOAPODS: 1.16.2
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"images" : [
3+
{
4+
"filename" : "Icon.png",
5+
"idiom" : "universal",
6+
"platform" : "ios",
7+
"size" : "1024x1024"
8+
}
9+
],
10+
"info" : {
11+
"author" : "xcode",
12+
"version" : 1
13+
}
14+
}

0 commit comments

Comments
 (0)