cwords 0.1.6-jruby → 0.1.7-jruby
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/bin/cwords +1 -1
- data/bin/cwords_mkdb +3 -2
- metadata +2 -2
data/bin/cwords
CHANGED
@@ -13,5 +13,5 @@ mem = mems ? mems[1] : '4096m'
|
|
13
13
|
argv = ARGV.select{|x| not x=~ /^M=\w+$/}.join(' ')
|
14
14
|
puts "Starting cwords with max heap size " + mem + " ...\n"
|
15
15
|
|
16
|
-
cmd = "jruby --
|
16
|
+
cmd = "jruby --server --fast -J-Xmx#{mem} " + scriptdir + "cwords.rb " + argv
|
17
17
|
exec cmd
|
data/bin/cwords_mkdb
CHANGED
@@ -10,7 +10,8 @@ end
|
|
10
10
|
mems = ARGV.join(" ").match(/M=(\w+)/)
|
11
11
|
mem = mems ? mems[1] : '4096m'
|
12
12
|
argv = ARGV.select{|x| not x=~ /^M=\w+$/}.join(' ')
|
13
|
-
puts "Starting
|
13
|
+
puts "Starting cwords_mkdb with max heap size " + mem + " ...\n"
|
14
14
|
|
15
|
-
cmd = "jruby --
|
15
|
+
cmd = "jruby --server --fast -J-Xmx#{mem} " + scriptdir + "cwords_mkdb.rb " + argv
|
16
|
+
puts cmd
|
16
17
|
exec cmd
|