diff options
author | Louise Crow <louise.crow@gmail.com> | 2013-05-16 10:39:01 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2013-05-16 10:39:01 +0100 |
commit | babc902288a0f20c9eae3377e3a1168bdd1513cd (patch) | |
tree | d8e04a23fb7bb2c55ecb4bead830ae7c47b32f8d /lib/alaveteli_external_command.rb | |
parent | 2fbaa3a0f8880ef24e0c1a35641f56f0ca6e9b67 (diff) | |
parent | ea6fb578bfcdf9b6733f00df4b0ebca3963f7117 (diff) |
Merge branch 'hotfix/0.9.0.3' into wdtk
Diffstat (limited to 'lib/alaveteli_external_command.rb')
-rw-r--r-- | lib/alaveteli_external_command.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/alaveteli_external_command.rb b/lib/alaveteli_external_command.rb index 24b4b1aa8..5e9a7ee83 100644 --- a/lib/alaveteli_external_command.rb +++ b/lib/alaveteli_external_command.rb @@ -8,6 +8,7 @@ module AlaveteliExternalCommand # :stdin_string - stdin string to pass to the process # :binary_output - boolean flag for treating the output as binary or text (only significant # ruby 1.9 and above) + # :memory_limit - maximum amount of memory (in bytes) available to the process def run(program_name, *args) # Run an external program, and return its output. # Standard error is suppressed unless the program @@ -38,6 +39,9 @@ module AlaveteliExternalCommand if opts.has_key? :binary_output xc.binary_mode = opts[:binary_output] end + if opts.has_key? :memory_limit + xc.memory_limit = opts[:memory_limit] + end xc.run(opts[:stdin_string] || "", opts[:env] || {}) if xc.status != 0 |