Update to Ruby 2.7.2 (#10594)
* Update to Ruby 2.7.2 * Update remaining files * Remove VERBOSE from development.rb and test.rb * Update Ruby version for dependabot and docs * Readd accidentally removed code
This commit is contained in:
parent
d80f918efa
commit
32e461c66b
9 changed files with 7 additions and 13 deletions
2
.github/workflows/dependabot.yml
vendored
2
.github/workflows/dependabot.yml
vendored
|
|
@ -18,7 +18,7 @@ jobs:
|
|||
- name: Set up Ruby 2.7
|
||||
uses: ruby/setup-ruby@v1
|
||||
with:
|
||||
ruby-version: 2.7.1
|
||||
ruby-version: 2.7.2
|
||||
- name: Installing additional dependencies
|
||||
run: |
|
||||
sudo apt-get update
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
FROM gitpod/workspace-postgres
|
||||
|
||||
# Install Ruby
|
||||
ENV RUBY_VERSION=2.7.1
|
||||
ENV RUBY_VERSION=2.7.2
|
||||
RUN rm /home/gitpod/.rvmrc && touch /home/gitpod/.rvmrc && echo "rvm_gems_path=/home/gitpod/.rvm" > /home/gitpod/.rvmrc
|
||||
RUN bash -lc "rvm install ruby-$RUBY_VERSION && rvm use ruby-$RUBY_VERSION --default"
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.7.1
|
||||
2.7.2
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ cache:
|
|||
- node_modules
|
||||
- $HOME/.nvm
|
||||
rvm:
|
||||
- 2.7.1
|
||||
- 2.7.2
|
||||
addons:
|
||||
postgresql: '10' # Travis does not work out of the box with Postgres 11 yet
|
||||
chrome: 'stable'
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM quay.io/forem/ruby:2.7.1
|
||||
FROM quay.io/forem/ruby:2.7.2
|
||||
|
||||
USER root
|
||||
|
||||
|
|
|
|||
|
|
@ -994,7 +994,7 @@ DEPENDENCIES
|
|||
zonebie (~> 0.6.1)
|
||||
|
||||
RUBY VERSION
|
||||
ruby 2.7.1p83
|
||||
ruby 2.7.2p137
|
||||
|
||||
BUNDLED WITH
|
||||
2.1.4
|
||||
|
|
|
|||
|
|
@ -1,7 +1,4 @@
|
|||
# rubocop:disable Metrics/BlockLength
|
||||
# Silence all Ruby 2.7 deprecation warnings
|
||||
$VERBOSE = nil
|
||||
|
||||
Rails.application.configure do
|
||||
# Settings specified here will take precedence over those in config/application.rb.
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,3 @@
|
|||
# Silence all Ruby 2.7 deprecation warnings
|
||||
$VERBOSE = nil
|
||||
|
||||
# rubocop:disable Metrics/BlockLength
|
||||
Rails.application.configure do
|
||||
# Settings specified here will take precedence over those in config/application.rb.
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
2.7.1
|
||||
2.7.2
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue