fxri 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/fxri +3 -6
- data/fxri.gemspec +1 -1
- metadata +1 -1
data/fxri
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
# move to directory of this file, so that icons can load correctly.
|
|
2
|
+
Dir.chdir(File.dirname(File.expand_path(__FILE__)))
|
|
3
|
+
|
|
2
4
|
|
|
3
5
|
# Load FXRuby: try gem, then Fox 1.2, then Fox 1.0
|
|
4
6
|
begin
|
|
@@ -303,12 +305,8 @@ class FXri < FXHorizontalFrame
|
|
|
303
305
|
|
|
304
306
|
end
|
|
305
307
|
|
|
306
|
-
if __FILE__ == $0
|
|
307
308
|
Thread.abort_on_exception= true
|
|
308
309
|
|
|
309
|
-
# move to directory of this file, so that icons can load correctly.
|
|
310
|
-
Dir.chdir(File.dirname(File.expand_path(__FILE__)))
|
|
311
|
-
|
|
312
310
|
application = FXApp.new($cfg.app.name, $cfg.app.name)
|
|
313
311
|
application.threadsEnabled = true
|
|
314
312
|
#application.init(ARGV)
|
|
@@ -317,4 +315,3 @@ if __FILE__ == $0
|
|
|
317
315
|
application.create
|
|
318
316
|
window.show(PLACEMENT_SCREEN)
|
|
319
317
|
application.run
|
|
320
|
-
end
|
data/fxri.gemspec
CHANGED
|
@@ -4,7 +4,7 @@ require 'rubygems'
|
|
|
4
4
|
spec = Gem::Specification.new do |s|
|
|
5
5
|
s.name = "fxri"
|
|
6
6
|
s.add_dependency('fxruby', '>= 1.2.0')
|
|
7
|
-
s.version = "0.3.
|
|
7
|
+
s.version = "0.3.1"
|
|
8
8
|
s.date = "2005-04-16"
|
|
9
9
|
s.summary = "Graphical interface to the RI documentation, with search engine."
|
|
10
10
|
s.require_paths = ["lib"]
|