Sha256: 1059f1ecf1f82fbfef4913eadccbba6680373b790fb47c1476c3c8608580e1e8
Contents?: true
Size: 600 Bytes
Versions: 14
Compression:
Stored size: 600 Bytes
Contents
#!/usr/bin/env ruby # cd to install path, so modules are found locally install_loc = $0.sub(/\/?[^\/]*$/, '') install_loc = '.' if install_loc == '' Dir.chdir(install_loc) $LOAD_PATH << './lib' require 'IFMapper/FXMapperWindow' if __FILE__ == $0 # Make application application = FXApp.new("IFMapper", "gga") # Make window m = FXMapperWindow.new(application) # Create the application windows application.create # Run the application begin application.run rescue => e m.autosave $stderr.puts e $stderr.flush raise e end end
Version data entries
14 entries across 11 versions & 1 rubygems