Upgrades ruby to 2.7.2

This commit is contained in:
Clarissa Borges 2021-02-28 22:01:11 -03:00 committed by Eric Schultz
parent 045af4b32e
commit 84f0e857a1
8 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
# License: LGPL-3.0-or-later # License: LGPL-3.0-or-later
name: Javascript build and test name: Javascript build and test
env: env:
ruby: '2.6.6' ruby: '2.7.2'
on: on:
push: push:
paths-ignore: paths-ignore:

View file

@ -13,7 +13,7 @@ on:
- NOTICE-ruby - NOTICE-ruby
env: env:
os: ubuntu-latest os: ubuntu-latest
ruby: 2.6.6 ruby: '2.7.2'
jobs: jobs:
notice_ruby: notice_ruby:
runs-on: ${{ env.os }} runs-on: ${{ env.os }}

View file

@ -34,7 +34,7 @@ jobs:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
node: [14.6.0] node: [14.6.0]
ruby: [2.6.6] ruby: [2.7.2]
steps: steps:
- run: 'echo "Placeholder for webpack"' - run: 'echo "Placeholder for webpack"'
main_build: main_build:
@ -43,6 +43,6 @@ jobs:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
node: [14.6.0] node: [14.6.0]
ruby: [2.6.6] ruby: [2.7.2]
steps: steps:
- run: 'echo "Placeholder for main_build"' - run: 'echo "Placeholder for main_build"'

View file

@ -27,7 +27,7 @@ jobs:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
node: [14.6.0] node: [14.6.0]
ruby: [2.6.6] ruby: [2.7.2]
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Setup PostgreSQL with PostgreSQL extensions and unprivileged user - name: Setup PostgreSQL with PostgreSQL extensions and unprivileged user

View file

@ -1 +1 @@
2.6.6 2.7.2

View file

@ -2,7 +2,7 @@
source 'https://rubygems.org' source 'https://rubygems.org'
ruby '2.6.6' ruby '2.7.2'
gem 'rails', '~> 6.1.3' gem 'rails', '~> 6.1.3'
gem 'jbuilder', '~> 2.10' gem 'jbuilder', '~> 2.10'
gem 'bootsnap', '~> 1.4', require: false # Large rails application booting enhancer gem 'bootsnap', '~> 1.4', require: false # Large rails application booting enhancer

View file

@ -479,7 +479,7 @@ DEPENDENCIES
wisper-rspec (~> 1.1.0) wisper-rspec (~> 1.1.0)
RUBY VERSION RUBY VERSION
ruby 2.6.6p146 ruby 2.7.2p137
BUNDLED WITH BUNDLED WITH
1.17.3 1.17.3

View file

@ -25,7 +25,7 @@ describe DirectDebitDetailsController, type: :request do
post '/sepa', params: valid_params post '/sepa', params: valid_params
assert_response 200 assert_response 200
assert_equal nil, JSON.parse(@response.body)['errors'] assert_nil JSON.parse(@response.body)['errors']
end end
it 'is not valid without sepa_params' do it 'is not valid without sepa_params' do