richard
January 24, 2007, 8:50am
#1
Hi,
I’ve got the statements:
sAppDir = ARGV[0]
puts “Application Directory = ‘#{sAppDir}’”
sFileName= ARGV[1]
puts “YAML filename = ‘#{sFileName}’”
Under SciTE with parameters 1/2 set to xxx/yyy respectively, execution
yields:
Application Directory = ‘’
YAML filename = ‘’
Under Command window, I get:
K:>GenDB_CreationSQL_FromYML.rb XXX YYY
Application Directory = ‘XXX’
YAML filename = ‘YYY’
I’m running under WinXP/SP2 with SciTE ver. 1.72 (which I just upgraded
from ver. 1.59, hoping to solve this problem)
Any ideas?
Thanks in Advance,
Richard
P.S. I didn’t post on the Scintilla-interest list. I was getting
killed with Spam when I was subscribed to that list, which ended when I
unsubscribed.
richard
January 24, 2007, 2:47pm
#2
Hi,
Application Directory = ‘XXX’
YAML filename = ‘YYY’
I’m running under WinXP/SP2 with SciTE ver. 1.72 (which I just upgraded
from ver. 1.59, hoping to solve this problem)
Any ideas?
In your ruby.properties, make sure you have something like:
command.go.$(file.patterns.rb)=ruby $(FileNameExt) $(1) $(2) $(3) $(4)
The $(1), $(2), etc. is the parameters you input into the params dialog.
-Mitchell;
richard
January 24, 2007, 8:40pm
#3
Hi Mitchel,
Thank you very much. I’m sure I did that in my 1.59 version, which
I’ll double check (I only changed the path to get to the 1.72 ver.).
If by some quirk I’m unable to do that successfully, I’ll post again
to announce my stupidity
Best wishes,
Richard
richard
January 25, 2007, 7:00pm
#4
Hi Mitchell,
For the benefit of other users who may view this thread, here’s what I
came up to customize SciTE for my purposes:
if PLAT_WIN
command.go..rb=ruby $(FileNameExt) $(1) $(2) $(3) $(4)
command.go.subsystem. .rb=1
command.go..rbw=rubyw $(FileNameExt) $(1) $(2) $(3) $(4)
command.go.subsystem. .rbw=1
command.help..rb=$(CurrentWord)!c:\apps\ruby\ProgrammingRuby.chm
command.help.subsystem. .rb=4
clear.before.execute=1
line.margin.visible
line.margin.width=3+
Again, thanks for getting me restarted.
Regards,
Richard
richard
January 25, 2007, 6:55pm
#5
Hi Mitchell,
For the benefit of other users who may view this thread, here’s what I
came up to customize SciTE for my purposes:
if PLAT_WIN
command.go..rb=ruby $(FileNameExt) $(1) $(2) $(3) $(4)
command.go.subsystem. .rb=1
command.go.*.rbw=rubyw $(FileNameExt) $(1) $(2) $(3) $(4)
clear.before.execute
line.margin.visible
line.margin.width=3+
Again, thanks for getting me restarted.
Regards,
Richard