Method: Omnibus::Compressor::DMG#pkg_position

Defined in:
lib/omnibus/compressors/dmg.rb

#pkg_position(val = NULL) ⇒ String

Set or return the starting x,y position where the .pkg file should live in the DMG window.

Examples:

pkg_position "535, 50"


89
90
91
92
93
94
95
# File 'lib/omnibus/compressors/dmg.rb', line 89

def pkg_position(val = NULL)
  if null?(val)
    @pkg_position || "535, 50"
  else
    @pkg_position = val
  end
end