Determines the date of Passover for a Gregorian year. Also includes boolean functions to check whether a date is a Jewish holiday, Fast Day or Rosh Chodesh.
Supported languages:
Javascript
Ruby
Add this line to your application's Gemfile:
gem 'hebcal'
And then execute:
$ bundle
Or install it yourself as:
$ gem install hebcal
-
At the top of the file where the class is defined, declare require
hebcal``
-
In the desired class, declare include HebCal::Holidays
-
IsPesach(d)
returns true iff d is a Ruby Time object representing a date during Pesach. Note that the day on which Pesach begins at sunset returns false.
-
The following functions work in a similar way to IsPesach()
:
-
IsShavuot()
, IsRoshHashanah()
, IsYomKippur()
, IsSukkot()
-
IsRegel()
: IsPesach() || IsShavuot || IsSukkot()
-
IsMoed()
: Hol HaMoed Pesach or Hol HaMoed Sukkot
-
IsYomTov()
: IsPesach() || IsShavuot() || IsRoshHashanah() || IsSukkot()) && !IsMoed()
Note that IsYomTov(yk) == false, where yk is the date of Yom Kippur.
-
IsPurim()
, IsHanuka()
-
Is10Tevet()
, IsTaanitEster()
, Is17Tamuz()
, Is9Av()
, IsFastOfGedalia()
-
IsTaanit()
: Is10Tevet() || IsTaanitEster() || Is17Tamuz() || Is9Av() || IsFastOfGedalia()
-
IsRoshChodesh()
-
Include the javascript source file in your HTML page
-
If using Ruby On Rails, you can declare //= require hebcal
at the top of a javascript or coffeescript file
-
To include the script explicitly in an html file,
<script src="app/assets/javascripts/hebcal/passover.js" type="text/javascript"></script>
-
All date formats are YYYY-mm-dd, where month is index from 1 (i.e. 1 == January, not the usual javascript index of 0 == January!) and YYYY is the Gregorian year.
-
$.whenIsPesach(yyyy) returns a date in the above format, where yyyy is the Gregorian year.
Note that the date returned is the first day of Pesach, not the day on which Pesach begins at sunset.
-
$.isPesach(d) returns true iff d is a date during Pesach, in the above format. Note that the day on which Pesach begins at sunset returns false.
-
The following functions work in a similar way to $.isPesach():
-
$.isShavuot(), $.isRoshHashanah(), $.isYomKippur(), $.isSukkot();
-
$.isRegel(): $.isPesach() || $.isShavuot() || $.isSukkot();
-
$.isMoed(): Hol HaMoed Pesach or Hol HaMoed Sukkot;
-
$.isYomTov(): ($.isPesach() || $.isSukkot() || $.isShavuot() || $.isRoshHashanah()) && !$.isMoed();
Note that isYomTov(yk) == false, where yk is the date of Yom Kippur.
-
$.isPurim()
, $.isHanuka()
-
$.isRoshChodesh()
-
$.is10Tevet()
, $.isTaanitEster()
, $.is17Tamuz()
, $.is9Av()
, $.isFastOfGedalia()
-
$.isTaanit()
: $.is10Tevet() || $.isTaanitEster() || $.is17Tamuz() || $.is9Av() || $.isFastOfGedalia()