Fix Rubocop offenses

This commit is contained in:
Sebastian Serth
2022-04-24 18:18:16 +02:00
parent 9994ebdb72
commit 038864e4b4
5 changed files with 6 additions and 6 deletions

2
Vagrantfile vendored
View File

@ -10,7 +10,7 @@ Vagrant.configure(2) do |config|
v.cpus = 4
end
config.vm.network 'forwarded_port',
host_ip: ENV['LISTEN_ADDRESS'] || '127.0.0.1',
host_ip: ENV.fetch('LISTEN_ADDRESS', '127.0.0.1'),
host: 7000,
guest: 7000
config.vm.synced_folder '.', '/home/vagrant/codeocean'