Skip to content

Commit c9ca266

Browse files
committed
Initial commit
0 parents  commit c9ca266

File tree

13 files changed

+1716
-0
lines changed

13 files changed

+1716
-0
lines changed

.gitignore

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# OS X
2+
.DS_Store
3+
4+
## Build generated
5+
build/
6+
DerivedData
7+
8+
## Various settings
9+
*.pbxuser
10+
!default.pbxuser
11+
*.mode1v3
12+
!default.mode1v3
13+
*.mode2v3
14+
!default.mode2v3
15+
*.perspectivev3
16+
!default.perspectivev3
17+
xcuserdata
18+
19+
## Other
20+
*.xccheckout
21+
*.moved-aside
22+
*.xcuserstate
23+
*.xcscmblueprint
24+
25+
## Obj-C/Swift specific
26+
*.hmap
27+
*.ipa
28+
29+
# CocoaPods
30+
Pods/
31+
Podfile.lock
32+
33+
# Carthage
34+
#
35+
# Add this line if you want to avoid checking in source code from Carthage dependencies.
36+
# Carthage/Checkouts
37+
38+
Carthage/Build
39+
40+
# Clang and OCLint
41+
compile_commands.json
42+
xcodebuild.log
43+
44+
45+
#appcode
46+
.idea
47+
48+
*.xcworkspace
49+
50+
#Code Coverage in Xcode7
51+
*.gcda
52+
*.gcno

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# SwiftyJSONAccelerator
2+
3+
**Currenty In Development**
4+
5+
A swift model generator like the Objective-C JSONAccelerator. Formats and generates models for the given JSON and also breaks them into files making it easy to manage and share between several models.
6+

0 commit comments

Comments
 (0)