We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
>> require 'origami' => true >> Origami::Date.now Traceback (most recent call last): 4: from (irb):2:in `<main>' 3: from /home/user/.rvm/gems/ruby-3.0.0/gems/origami-2.1.0/lib/origami/string.rb:436:in `now' 2: from /home/user/.rvm/gems/ruby-3.0.0/gems/origami-2.1.0/lib/origami/string.rb:436:in `new' 1: from /home/user/.rvm/gems/ruby-3.0.0/gems/origami-2.1.0/lib/origami/string.rb:373:in `initialize' ArgumentError (wrong number of arguments (given 1, expected 0; required keyword: year))
The text was updated successfully, but these errors were encountered:
See https://rubyreferences.github.io/rubychanges/3.0.html#keyword-arguments-are-now-fully-separated-from-positional-arguments
**date monkey patch:
module Origami class Date < LiteralString def self.parse(str) #:nodoc: raise InvalidDateError, "Not a valid Date string" unless str =~ REGEXP_TOKEN date = { year: $~['year'].to_i } date[:month] = $~['month'].to_i if $~['month'] date[:day] = $~['day'].to_i if $~['day'] date[:hour] = $~['hour'].to_i if $~['hour'] date[:min] = $~['min'].to_i if $~['min'] date[:sec] = $~['sec'].to_i if $~['sec'] if %w[+ -].include?($~['ut']) utc_offset = $~['ut_hour_off'].to_i * 3600 + $~['ut_min_off'].to_i * 60 utc_offset = -utc_offset if $~['ut'] == '-' date[:utc_offset] = utc_offset end Origami::Date.new(**date) end def self.now now = Time.now.utc date = { year: now.strftime("%Y").to_i, month: now.strftime("%m").to_i, day: now.strftime("%d").to_i, hour: now.strftime("%H").to_i, min: now.strftime("%M").to_i, sec: now.strftime("%S").to_i, utc_offset: now.utc_offset } Origami::Date.new(**date) end end end
Sorry, something went wrong.
No branches or pull requests
The text was updated successfully, but these errors were encountered: