Class: Rake::CpuCounter

Inherits:
Object
  • Object
show all
Defined in:
lib/rake/cpu_counter.rb

Overview

Based on a script at:

http://stackoverflow.com/questions/891537/ruby-detect-number-of-cpus-installed

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.countObject

:nodoc: all



6
7
8
# File 'lib/rake/cpu_counter.rb', line 6

def self.count
  new.count_with_default
end

Instance Method Details

#count_with_default(default = 4) ⇒ Object



10
11
12
13
14
# File 'lib/rake/cpu_counter.rb', line 10

def count_with_default(default=4)
  count || default
rescue StandardError
  default
end