You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sites/platform/src/languages/ruby.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -354,14 +354,20 @@ For Rails, you have two choices:
354
354
- For garbage collection tuning, you can read [this article](https://shopify.engineering/17489064-tuning-rubys-global-method-cache)
355
355
and look for [discourse configurations](https://github.com/discourse/discourse_docker/blob/b259c8d38e0f42288fd279c9f9efd3cefbc2c1cb/templates/web.template.yml#L8)
356
356
357
-
- New images are released on a regular basis to apply security patches.
357
+
- New images are released on a regular basis to apply security patches. While the minor version will not change (as you are specifying it in the `type` property), the patch version will be updated. You may encounter this kind of error:
358
+
359
+
```
360
+
bundler: failed to load command: puma (/app/vendor/bundle/ruby/3.2.0/bin/puma)
361
+
/app/.global/gems/bundler-2.4.22/lib/bundler/definition.rb:447:in `validate_ruby!': Your Ruby version is 3.2.9, but your Gemfile specified 3.2.8 (Bundler::RubyVersionMismatch)
362
+
```
363
+
358
364
To avoid issues when such updates are performed, use
Copy file name to clipboardExpand all lines: sites/upsun/src/languages/ruby.md
+8-2Lines changed: 8 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -398,14 +398,20 @@ For Rails, you can use the standard Rails `config/database.yml` with the values
398
398
399
399
- For garbage collection tuning, you can read [this article](https://shopify.engineering/17489064-tuning-rubys-global-method-cache)
400
400
and look for [discourse configurations](https://github.com/discourse/discourse_docker/blob/b259c8d38e0f42288fd279c9f9efd3cefbc2c1cb/templates/web.template.yml#L8)
401
-
- New images are released on a regular basis to apply security patches.
401
+
- New images are released on a regular basis to apply security patches. While the minor version will not change (as you are specifying it in the `type` property), the patch version will be updated. You may encounter this kind of error:
402
+
403
+
```
404
+
bundler: failed to load command: puma (/app/vendor/bundle/ruby/3.2.0/bin/puma)
405
+
/app/.global/gems/bundler-2.4.22/lib/bundler/definition.rb:447:in `validate_ruby!': Your Ruby version is 3.2.9, but your Gemfile specified 3.2.8 (Bundler::RubyVersionMismatch)
406
+
```
407
+
402
408
To avoid issues when such updates are performed, use
0 commit comments