Method: Installer#configure

Defined in:
lib/makeconf/installer.rb

#configure(project) ⇒ Object

Examine the operating environment and set configuration options



45
46
47
48
49
50
51
52
53
54
# File 'lib/makeconf/installer.rb', line 45

def configure(project)
  @project = project
  printf 'checking for a BSD-compatible install.. '
  if Platform.is_windows?
     puts 'not found'
  else
     @path = search() or throw 'No installer found'
     printf @path + "\n"
  end
end