aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext
diff options
context:
space:
mode:
authorKrekoten' Marjan <krekoten@gmail.com>2010-09-16 19:03:55 +0300
committerJosé Valim <jose.valim@gmail.com>2010-09-18 20:49:36 +0200
commitd4fa120671e989eecb71c14647dd2051d28de4a5 (patch)
treee5b9e768a4661dbac8c5f895b85d240be094aa4f /activesupport/lib/active_support/core_ext
parent76266a818449c732440e7e2ef4de8442ac6af891 (diff)
downloadrails-d4fa120671e989eecb71c14647dd2051d28de4a5.tar.gz
rails-d4fa120671e989eecb71c14647dd2051d28de4a5.tar.bz2
rails-d4fa120671e989eecb71c14647dd2051d28de4a5.zip
Move capture to Kernel. [#5641 state:resolved]
Diffstat (limited to 'activesupport/lib/active_support/core_ext')
-rw-r--r--activesupport/lib/active_support/core_ext/kernel/reporting.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/kernel/reporting.rb b/activesupport/lib/active_support/core_ext/kernel/reporting.rb
index 5105c40e4d..37a827123a 100644
--- a/activesupport/lib/active_support/core_ext/kernel/reporting.rb
+++ b/activesupport/lib/active_support/core_ext/kernel/reporting.rb
@@ -59,4 +59,23 @@ module Kernel
raise unless exception_classes.any? { |cls| e.kind_of?(cls) }
end
end
+
+ # Captures the given stream and returns it:
+ #
+ # stream = capture(:stdout){ puts "Cool" }
+ # stream # => "Cool\n"
+ #
+ def capture(stream)
+ begin
+ stream = stream.to_s
+ eval "$#{stream} = StringIO.new"
+ yield
+ result = eval("$#{stream}").string
+ ensure
+ eval("$#{stream} = #{stream.upcase}")
+ end
+
+ result
+ end
+ alias :silence :capture
end