Skip to content

Commit

Permalink
Merge branch 'nobu-no-fixnum'
Browse files Browse the repository at this point in the history
  • Loading branch information
hsbt committed Sep 16, 2016
2 parents 7b3ee9b + 16dc317 commit 93e55a4
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 20 deletions.
1 change: 0 additions & 1 deletion lib/rake.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ module Rake; end
require "ostruct"

require "rake/ext/string"
require "rake/ext/fixnum"

require "rake/win32"

Expand Down
2 changes: 1 addition & 1 deletion lib/rake/application.rb
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ def standard_rake_options # :nodoc:
"(default is number of CPU cores + 4)",
lambda { |value|
if value.nil? || value == ""
value = Fixnum::MAX
value = Float::INFINITY
elsif value =~ /^\d+$/
value = value.to_i
else
Expand Down
18 changes: 0 additions & 18 deletions lib/rake/ext/fixnum.rb

This file was deleted.

0 comments on commit 93e55a4

Please sign in to comment.