Module: Octotest

Defined in:
lib/octotest.rb

Defined Under Namespace

Modules: Autotest

Constant Summary collapse

VERSION =
"0.0.1"

Class Method Summary collapse

Class Method Details

.binaryObject



5
6
7
# File 'lib/octotest.rb', line 5

def self.binary
  @binary ||= (ENV["OCTOTEST_BIN"] || "octotest")
end

.rubiesObject



9
10
11
12
13
14
# File 'lib/octotest.rb', line 9

def self.rubies
  @rubies ||= begin
    ENV["OCTOTEST_RUBIES"] ? ENV["OCTOTEST_RUBIES"].split :
                             %x{ rvm list strings }.split("\n")
  end
end