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

Version Path
ifmapper-0.7 IFMapper.rb
ifmapper-0.8 IFMapper.rbw
ifmapper-0.8.1 IFMapper.rbw
ifmapper-0.8.5 IFMapper.rbw
ifmapper-0.9.5 IFMapper.rbw
ifmapper-0.9.6 IFMapper.rbw
ifmapper-0.9.7 IFMapper.rbw
ifmapper-0.9.9 IFMapper.rbw
ifmapper-0.9.8 IFMapper.rbw
ifmapper-0.9.8 bin/IFMapper
ifmapper-0.9 IFMapper.rbw
ifmapper-0.9.9 bin/IFMapper
ifmapper-1.0.0 bin/IFMapper
ifmapper-1.0.0 IFMapper.rbw