From 34276148c4450faa77bb298cfbe005f7c263f802 Mon Sep 17 00:00:00 2001 From: drbrain Date: Wed, 18 May 2011 21:07:13 +0000 Subject: * lib/cgi/util.rb: Improve documentation. Patch by Clinton Nixon. [Ruby 1.9 - Bug #4733] * lib/cgi/core.rb: ditto * lib/cgi/cookie.rb: ditto git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31634 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/cgi/cookie.rb | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/cgi/cookie.rb') diff --git a/lib/cgi/cookie.rb b/lib/cgi/cookie.rb index f05f83e0c9..c2526931d5 100644 --- a/lib/cgi/cookie.rb +++ b/lib/cgi/cookie.rb @@ -104,10 +104,12 @@ class CGI # True if this cookie is secure; false otherwise attr_reader("secure") + # Returns the value or list of values for this cookie. def value self end + # Replaces the value of this cookie with a new value or list of values. def value=(val) replace(Array(val)) end -- cgit v1.2.3