aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-01-17 01:29:45 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-01-17 01:29:45 +0000
commit1dbb4adec1c76f4aa324c7232dd5cafe61b3e062 (patch)
tree597f674bf61612e48e797035127108cb2946b5f1 /railties/lib
parente1374f7b17e0e9087a974f5109500da3c97bf882 (diff)
downloadrails-1dbb4adec1c76f4aa324c7232dd5cafe61b3e062.tar.gz
rails-1dbb4adec1c76f4aa324c7232dd5cafe61b3e062.tar.bz2
rails-1dbb4adec1c76f4aa324c7232dd5cafe61b3e062.zip
Made a bunch of stuff quiet in the docs
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@441 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/binding_of_caller.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/lib/binding_of_caller.rb b/railties/lib/binding_of_caller.rb
index 64b945158c..7d31672a91 100644
--- a/railties/lib/binding_of_caller.rb
+++ b/railties/lib/binding_of_caller.rb
@@ -1,7 +1,7 @@
begin
require 'simplecc'
rescue LoadError
- def Continuation.create(*args, &block)
+ def Continuation.create(*args, &block) #:nodoc:
cc = nil; result = callcc {|c| cc = c; block.call(cc) if block and args.empty?}
result ||= args
return *[cc, *result]
@@ -33,7 +33,7 @@ end
# If you don't do this an Exception will be raised. Because of
# the way that Binding.of_caller is implemented it has to be
# done this way.
-def Binding.of_caller(&block)
+def Binding.of_caller(&block) #:nodoc:
old_critical = Thread.critical
Thread.critical = true
count = 0