質問編集履歴
1
Heroku run bundle config の結果 の追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -462,6 +462,68 @@
|
|
462
462
|
|
463
463
|
|
464
464
|
|
465
|
+
###追記 Heroku run bundle config の結果
|
466
|
+
|
467
|
+
```
|
468
|
+
|
469
|
+
Settings are listed in order of priority. The top value will be used.
|
470
|
+
|
471
|
+
frozen
|
472
|
+
|
473
|
+
Set for your local app (/app/.bundle/config): true
|
474
|
+
|
475
|
+
Set for the current user (/app/.bundle/config): true
|
476
|
+
|
477
|
+
|
478
|
+
|
479
|
+
path
|
480
|
+
|
481
|
+
Set for your local app (/app/.bundle/config): "vendor/bundle"
|
482
|
+
|
483
|
+
Set for the current user (/app/.bundle/config): "vendor/bundle"
|
484
|
+
|
485
|
+
|
486
|
+
|
487
|
+
bin
|
488
|
+
|
489
|
+
Set for your local app (/app/.bundle/config): "vendor/bundle/bin"
|
490
|
+
|
491
|
+
Set for the current user (/app/.bundle/config): "vendor/bundle/bin"
|
492
|
+
|
493
|
+
|
494
|
+
|
495
|
+
jobs
|
496
|
+
|
497
|
+
Set for your local app (/app/.bundle/config): 4
|
498
|
+
|
499
|
+
Set for the current user (/app/.bundle/config): 4
|
500
|
+
|
501
|
+
|
502
|
+
|
503
|
+
clean
|
504
|
+
|
505
|
+
Set for your local app (/app/.bundle/config): false
|
506
|
+
|
507
|
+
Set for the current user (/app/.bundle/config): false
|
508
|
+
|
509
|
+
|
510
|
+
|
511
|
+
without
|
512
|
+
|
513
|
+
Set for your local app (/app/.bundle/config): [:development, :test, :production]
|
514
|
+
|
515
|
+
Set for the current user (/app/.bundle/config): [:development, :test, :production]
|
516
|
+
|
517
|
+
|
518
|
+
|
519
|
+
gemfile
|
520
|
+
|
521
|
+
Set via BUNDLE_GEMFILE: "/app/Gemfile"
|
522
|
+
|
523
|
+
```
|
524
|
+
|
525
|
+
|
526
|
+
|
465
527
|
### 試したこと
|
466
528
|
|
467
529
|
Gemバージョンの指定
|