Codebase list libhdate / eb53b33d-0869-45b4-af96-c77fd700e4ac/upstream examples / bindings / hdate_ruby.rb
eb53b33d-0869-45b4-af96-c77fd700e4ac/upstream

Tree @eb53b33d-0869-45b4-af96-c77fd700e4ac/upstream (Download .tar.gz)

hdate_ruby.rb @eb53b33d-0869-45b4-af96-c77fd700e4ac/upstreamraw · history · blame

#! /usr/bin/ruby

# hdate_ruby.rb
# example file for libhdate.
#

#
# run: ruby hdate_ruby.rb
#

#
#  Copyright (C) 2008  Yaacov Zamir <kzamir@walla.co.il>
#  
#  This program is free software: you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation, either version 3 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program.  If not, see <http://www.gnu.org/licenses/>.
#

# Import the hdate library
require 'hdate'

# Create a new Hdate object
h = Hdate::Hdate.new

# Print gregorian date
puts "Today is:"
puts "#{h.get_gday()},#{h.get_gmonth()},#{h.get_gyear()}"

# Print hebrew date: 0 - long format
puts h.get_format_date(0);