Skip to content

Commit 795461c

Browse files
sgr-ksmtsgr-ksmt
authored andcommitted
Initial commit
0 parents  commit 795461c

Some content is hidden

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

56 files changed

+4488
-0
lines changed

.bundle/config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
BUNDLE_PATH: "vendor/bundle"

.gitignore

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
# Xcode
2+
#
3+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
4+
5+
## Build generated
6+
build/
7+
DerivedData/
8+
9+
## Various settings
10+
*.pbxuser
11+
!default.pbxuser
12+
*.mode1v3
13+
!default.mode1v3
14+
*.mode2v3
15+
!default.mode2v3
16+
*.perspectivev3
17+
!default.perspectivev3
18+
xcuserdata/
19+
20+
## Other
21+
*.moved-aside
22+
*.xccheckout
23+
*.xcscmblueprint
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
*.ipa
28+
*.dSYM.zip
29+
*.dSYM
30+
31+
## Playgrounds
32+
timeline.xctimeline
33+
playground.xcworkspace
34+
35+
# Swift Package Manager
36+
#
37+
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
38+
# Packages/
39+
# Package.pins
40+
# Package.resolved
41+
.build/
42+
43+
# CocoaPods
44+
#
45+
# We recommend against adding the Pods directory to your .gitignore. However
46+
# you should judge for yourself, the pros and cons are mentioned at:
47+
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
48+
#
49+
Pods/
50+
51+
# Carthage
52+
#
53+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
54+
# Carthage/Checkouts
55+
56+
Carthage/Build
57+
58+
# fastlane
59+
#
60+
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
61+
# screenshots whenever they are needed.
62+
# For more information about the recommended setup visit:
63+
# https://docs.fastlane.tools/best-practices/source-control/#source-control
64+
65+
fastlane/report.xml
66+
fastlane/Preview.html
67+
fastlane/screenshots/**/*.png
68+
fastlane/test_output
69+
70+
GoogleService-Info.plist
71+
vendor/bundle
72+
firebase-debug.log
73+
firestore-debug.log

FireSnapshot.podspec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Pod::Spec.new do |s|
2+
s.name = "FireSnapshot"
3+
s.version = "0.1.0"
4+
s.summary = "Firebase Cloud Firestore Model Framework using Codable."
5+
s.homepage = "https://github.com/sgr-ksmt/#{s.name}"
6+
s.license = 'MIT'
7+
s.author = { "Suguru Kishimoto" => "[email protected]" }
8+
s.source = { :git => "#{s.homepage}.git", :tag => s.version.to_s }
9+
s.platform = :ios, '11.0'
10+
s.requires_arc = true
11+
s.source_files = "FireSnapshot/Sources/**/*.swift"
12+
s.static_framework = true
13+
s.swift_version = "5.1"
14+
s.dependency "Firebase/Firestore", "~> 6.9"
15+
end

FireSnapshot.xcodeproj/project.pbxproj

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

FireSnapshot.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>
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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 © Suguru Kishimoto. All rights reserved.
8+
//</string>
9+
</dict>
10+
</plist>
Lines changed: 83 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1110"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "1607A5A6233F398A0034BB35"
18+
BuildableName = "FireSnapshot.framework"
19+
BlueprintName = "FireSnapshot"
20+
ReferencedContainer = "container:FireSnapshot.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "NO">
30+
<CommandLineArguments>
31+
<CommandLineArgument
32+
argument = "-FIRDebugEnabled "
33+
isEnabled = "YES">
34+
</CommandLineArgument>
35+
</CommandLineArguments>
36+
<Testables>
37+
<TestableReference
38+
skipped = "NO">
39+
<BuildableReference
40+
BuildableIdentifier = "primary"
41+
BlueprintIdentifier = "1607A5C0233F4CC00034BB35"
42+
BuildableName = "FireSnapshotTests.xctest"
43+
BlueprintName = "FireSnapshotTests"
44+
ReferencedContainer = "container:FireSnapshot.xcodeproj">
45+
</BuildableReference>
46+
</TestableReference>
47+
</Testables>
48+
</TestAction>
49+
<LaunchAction
50+
buildConfiguration = "Debug"
51+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
52+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
53+
launchStyle = "0"
54+
useCustomWorkingDirectory = "NO"
55+
ignoresPersistentStateOnLaunch = "NO"
56+
debugDocumentVersioning = "YES"
57+
debugServiceExtension = "internal"
58+
allowLocationSimulation = "YES">
59+
</LaunchAction>
60+
<ProfileAction
61+
buildConfiguration = "Release"
62+
shouldUseLaunchSchemeArgsEnv = "YES"
63+
savedToolIdentifier = ""
64+
useCustomWorkingDirectory = "NO"
65+
debugDocumentVersioning = "YES">
66+
<MacroExpansion>
67+
<BuildableReference
68+
BuildableIdentifier = "primary"
69+
BlueprintIdentifier = "1607A5A6233F398A0034BB35"
70+
BuildableName = "FireSnapshot.framework"
71+
BlueprintName = "FireSnapshot"
72+
ReferencedContainer = "container:FireSnapshot.xcodeproj">
73+
</BuildableReference>
74+
</MacroExpansion>
75+
</ProfileAction>
76+
<AnalyzeAction
77+
buildConfiguration = "Debug">
78+
</AnalyzeAction>
79+
<ArchiveAction
80+
buildConfiguration = "Release"
81+
revealArchiveInOrganizer = "YES">
82+
</ArchiveAction>
83+
</Scheme>

FireSnapshot.xcworkspace/contents.xcworkspacedata

Lines changed: 10 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>

0 commit comments

Comments
 (0)