$ git grep RUBY_VERSION lib |
lib/puppet.rb:if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new("2.5.0") |
lib/puppet.rb: raise LoadError, "Puppet #{Puppet.version} requires Ruby 2.5.0 or greater, found Ruby #{RUBY_VERSION.dup}." |
lib/puppet.rb:Puppet::OLDEST_RECOMMENDED_RUBY_VERSION = '2.5.0' |
lib/puppet.rb: if Gem::Version.new(RUBY_VERSION.dup) < Gem::Version.new(Puppet::OLDEST_RECOMMENDED_RUBY_VERSION) |
lib/puppet.rb: Puppet.deprecation_warning(_("Support for ruby version %{version} is deprecated and will be removed in a future release. See https://puppet.com/docs/puppet/latest/system_requirements.html for a list of supported ruby versions.") % { version: RUBY_VERSION }) |
lib/puppet/application.rb: 'ruby_version' => RUBY_VERSION, |
lib/puppet/defaults.rb: :default => "Puppet/#{Puppet.version} Ruby/#{RUBY_VERSION}-p#{RUBY_PATCHLEVEL} (#{RUBY_PLATFORM})", |
lib/puppet/util.rb: if RUBY_VERSION >= "2.6" |
lib/puppet/util/monkey_patches.rb:if RUBY_VERSION.to_f < 3.0
|