choctop 0.9.1 → 0.9.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/features/fixtures/SampleApp/Info.plist +1 -1
- data/lib/choctop.rb +2 -2
- metadata +1 -1
data/History.txt
CHANGED
data/lib/choctop.rb
CHANGED
@@ -9,7 +9,7 @@ require "active_support"
|
|
9
9
|
require "osx/cocoa"
|
10
10
|
|
11
11
|
class ChocTop
|
12
|
-
VERSION = '0.9.
|
12
|
+
VERSION = '0.9.2'
|
13
13
|
|
14
14
|
# The name of the Cocoa application
|
15
15
|
# Default: info_plist['CFBundleExecutable']
|
@@ -121,7 +121,7 @@ class ChocTop
|
|
121
121
|
@name = info_plist['CFBundleExecutable']
|
122
122
|
@version = info_plist['CFBundleVersion']
|
123
123
|
@target = "#{name}.app"
|
124
|
-
@appcast_filename = info_plist['
|
124
|
+
@appcast_filename = info_plist['SUFeedURL'] ? File.basename(info_plist['SUFeedURL']) : 'linker_appcast.xml'
|
125
125
|
@release_notes = 'release_notes.html'
|
126
126
|
@rsync_args = '-aCv'
|
127
127
|
|