Initial commit

This commit is contained in:
Zhongwei Li
2025-11-30 09:00:36 +08:00
commit fa5f444aac
13 changed files with 1103 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{
"root": "/Users/josh/workspace/schemaflow",
"subprojects": {
"ruby": {
"path": "ruby",
"type": "ruby",
"description": "Ruby library"
},
"cli": {
"path": "cli",
"type": "node",
"description": "CLI tool"
}
}
}

View File

@@ -0,0 +1,31 @@
{
"root": "/Users/josh/workspace/zenpayroll",
"subprojects": {
"root": {
"path": ".",
"type": "ruby",
"description": "Main Rails application"
},
"gusto-deprecation": {
"path": "components/gusto-deprecation",
"type": "ruby",
"description": "Gusto deprecation component gem"
}
},
"commands": {
"rubocop": {
"location": "root",
"description": "Always run from repo root"
},
"rspec": {
"location": "subproject",
"command": "bundle exec rspec",
"overrides": {
"root": {
"command": "bin/rspec",
"description": "Root project uses bin/rspec wrapper"
}
}
}
}
}