diff options
Diffstat (limited to 'config/software/ruby.rb')
| -rw-r--r-- | config/software/ruby.rb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/config/software/ruby.rb b/config/software/ruby.rb index 56a04fc..316a342 100644 --- a/config/software/ruby.rb +++ b/config/software/ruby.rb @@ -1,4 +1,4 @@ -require 'fileutils' +# frozen_string_literal: true name "ruby" @@ -6,7 +6,6 @@ license "BSD-2-Clause" license_file "BSDL" license_file "COPYING" license_file "LEGAL" -skip_transitive_dependency_licensing true default_version "2.7.1" @@ -44,8 +43,8 @@ build do end build do - command "#{embedded_dir}/bin/gem install bundler -v'~> 2.0' --no-document" - command "#{embedded_dir}/bin/gem install bundler -v'~> 1.0' --no-document" + command "#{embedded_dir}/bin/gem install bundler -v '~> 1.0' --no-document" + command "#{embedded_dir}/bin/gem install bundler -v '~> 2.0' --no-document" end build do |
