Clay Shentrup
Clay Shentrup
But how does this require any more assumptions than, say, '2013-04-20'?
> the two will always agree with each other ``` ruby Timecop.freeze('2013-04-24'.to_date) { Date.today } => Tue, 23 Apr 2013 Timecop.freeze('2013-04-24') { Date.today } => Wed, 24 Apr 2013 ```
yeah that's just our (unmodified) fork of it in the cruise enterprise GitHub. On Mon, Mar 25, 2024, 1:09 PM Jeremy Bumsted ***@***.***> wrote: > @ClayShentrup thanks for raising this!...
Same! Thanks for the fix!
I'm using this guy's responder but I think it needs to be modified to play nice with the flash responder. He's only trying to deal with Devise issues whereas I'm...
@rafaelfranca what's the resolution here? is the plan not to offer a `to_turbo_stream`?
thank you! what are your thougths on my comment here? https://github.com/buildkite-plugins/vault-secrets-buildkite-plugin/pull/51/files#r1633670512
Yeah this is frustrating. I just do a presenter. ```ruby class SerializablePortalFile < JSONAPI::Serializable::Resource type('portal_files') attributes(:kind) attribute(:current_version) do @object.version end attribute(:fields) do @object.rows.each_with_index.map do |row, i| key = row.fetch('0') {...
> You could implement a decorator/presenter pattern Indeed that is exactly what my code does there. The presenter class is called Presenter.