Skip to content

Commit 2aba490

Browse files
committed
fix: include Gemfile when generating new projects
1 parent 383b7e2 commit 2aba490

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

scripts/configure.mjs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -304,6 +304,9 @@ export const getConfig = (() => {
304304
: {
305305
"App.js": { source: path.join(templateDir, "App.js") },
306306
}),
307+
Gemfile: {
308+
source: path.join(templateDir, "Gemfile"),
309+
},
307310
"app.json": appManifest(name),
308311
"index.js": {
309312
source: path.join(templateDir, "index.js"),

test/configure/getConfig.test.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ describe("getConfig()", () => {
4848
".gitignore",
4949
".watchmanconfig",
5050
"App.tsx",
51+
"Gemfile",
5152
"app.json",
5253
"babel.config.js",
5354
"index.js",

0 commit comments

Comments
 (0)