summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/time.rb21
2 files changed, 10 insertions, 16 deletions
diff --git a/ChangeLog b/ChangeLog
index 131ae62709..14586818f0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sun Aug 11 10:40:48 2013 Zachary Scott <e@zzak.io>
+
+ * lib/time.rb: [DOC] Correcting rdoc visibility of time.rb constants
+ Reported by Tanaka Akira [ruby-core:56517]
+
Sun Aug 11 04:48:14 2013 NARUSE, Yui <naruse@ruby-lang.org>
* file.c (rb_str_normalize_ospath):
diff --git a/lib/time.rb b/lib/time.rb
index 23e8add40a..91b5b54fe9 100644
--- a/lib/time.rb
+++ b/lib/time.rb
@@ -174,10 +174,8 @@ class Time
end
private :zone_utc?
- # An array with the number of days per month in a leap year.
- LeapYearMonthDays = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
- # An array with the number of days per month in a regular year.
- CommonYearMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31]
+ LeapYearMonthDays = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # :nodoc:
+ CommonYearMonthDays = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] # :nodoc:
def month_days(y, m)
if ((y % 4 == 0) && (y % 100 != 0)) || (y % 400 == 0)
LeapYearMonthDays[m-1]
@@ -403,14 +401,7 @@ class Time
end
end
- #
- # A hash of upcased RFC2822 month-names mapped to number of the month.
- # For example:
- #
- # Time.MonthValue['JAN']
- # #=> 1
- #
- MonthValue = {
+ MonthValue = { # :nodoc:
'JAN' => 1, 'FEB' => 2, 'MAR' => 3, 'APR' => 4, 'MAY' => 5, 'JUN' => 6,
'JUL' => 7, 'AUG' => 8, 'SEP' => 9, 'OCT' =>10, 'NOV' =>11, 'DEC' =>12
}
@@ -587,13 +578,11 @@ class Time
alias rfc822 rfc2822
- # An array of day names, as defined by RFC 2822
- RFC2822_DAY_NAME = [
+ RFC2822_DAY_NAME = [ # :nodoc:
'Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'
]
- # An array of month names, as defined by RFC 2822
- RFC2822_MONTH_NAME = [
+ RFC2822_MONTH_NAME = [ # :nodoc:
'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'
]