class Date
Public Instance Methods
from_solar()
click to toggle source
# File lib/ruby_lunardate.rb, line 4 def from_solar LunarDate.from_solar(year, month, day) end
to_solar(is_leap_month = false, calendar_symbol = :ko)
click to toggle source
# File lib/ruby_lunardate.rb, line 8 def to_solar(is_leap_month = false, calendar_symbol = :ko) LunarDate.to_solar(year, month, day, is_leap_month) end