Sutto / 88miles

Simple OSX client for 88miles built with MacRuby

This URL has Read+Write access

88miles / ApplicationDelegate.rb
100644 19 lines (15 sloc) 0.372 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#
# ApplicationDelegate.rb
#
# 88Miles' application delegate - use it to ensure
# stuff is done at specific times during the application
# life cycle.
#
# Created by Darcy Laycock on 17/03/09.
# Copyright (c) 2009 BrownBeagle. All rights reserved.
#
 
class ApplicationDelegate
 
  def applicationShouldTerminateAfterLastWindowClosed(app)
    return true
  end
 
end