summaryrefslogtreecommitdiff
path: root/doc/date/calendars.rdoc
blob: b8690841b1d45c09b3c4c6869e5f78e6c947e916 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
== Julian and Gregorian Calendars

The difference between the
{Julian calendar}[https://en.wikipedia.org/wiki/Julian_calendar]
and the
{Gregorian calendar}[https://en.wikipedia.org/wiki/Gregorian_calendar]
may matter to your program if it uses dates before the switchovers.

- October 15, 1582.
- September 14, 1752.

A date will be different in the two calendars, in general.

=== Different switchover dates

The reasons for the difference are religious/political histories.

- On October 15, 1582, several countries changed
  from the Julian calendar to the Gregorian calendar;
  these included Italy, Poland, Portugal, and Spain.
  Other contries in the Western world retained the Julian calendar.
- On September 14, 1752, most of the British empire
  changed from the Julian calendar to the Gregorian calendar.

When your code uses a date before these switchover dates,
it will matter whether it considers the switchover date
to be the earlier date or the later date (or neither).

See also {a concrete example here}[rdoc-ref:DateTime@When+should+you+use+DateTime+and+when+should+you+use+Time-3F].

=== Argument +start+

Certain methods in class \Date handle differences in the
{Julian and Gregorian calendars}[rdoc-ref:calendars.rdoc@Julian+and+Gregorian+Calendars]
by accepting an optional argument +start+, whose value may be:

- Date::ITALY (the default): the created date is Julian
  if before October 15, 1582, Gregorian otherwise:

      d = Date.new(1582, 10, 15)
      d.prev_day.julian? # => true
      d.julian?          # => false
      d.gregorian?       # => true

- Date::ENGLAND: the created date is Julian if before September 14, 1752,
  Gregorian otherwise:

    d = Date.new(1752, 9, 14, Date::ENGLAND)
    d.prev_day.julian? # => true
    d.julian?          # => false
    d.gregorian?       # => true

- Date::JULIAN: the created date is Julian regardless of its value:

    d = Date.new(1582, 10, 15, Date::JULIAN)
    d.julian? # => true

- Date::GREGORIAN: the created date is Gregorian regardless of its value:

    d = Date.new(1752, 9, 14, Date::GREGORIAN)
    d.prev_day.gregorian? # => true