Class: Date
Instance Method Summary collapse
Instance Method Details
#to_orient ⇒ Object
105 106 107 108 109 110 111 |
# File 'lib/other.rb', line 105 def to_orient if RUBY_PLATFORM == 'java' java.util.Date.new( year-1900, month-1, day , 0, 0 , 0 ) ## Jahr 0 => 1900 else self end end |