We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 038cef6 commit 65b6432Copy full SHA for 65b6432
lib/rake.rb
@@ -32,7 +32,6 @@ module Rake; end
32
require "ostruct"
33
34
require "rake/ext/string"
35
-require "rake/ext/fixnum"
36
37
require "rake/win32"
38
lib/rake/application.rb
@@ -449,7 +449,7 @@ def standard_rake_options # :nodoc:
449
"(default is number of CPU cores + 4)",
450
lambda { |value|
451
if value.nil? || value == ""
452
- value = Fixnum::MAX
+ value = Float::INFINITY
453
elsif value =~ /^\d+$/
454
value = value.to_i
455
else
lib/rake/ext/fixnum.rb
0 commit comments