Ben Naylor
Ben Naylor
I've been playing with potionjs for a bunch of my recent hobby projects, and firstly I'd like to say thank you! I was thinking of making a new npm package...
#1927 Added enough to hopefully make tzrs feature safe for replacement of the chrono feature in arthicoke-backend. This PR achieves to do exactly that ## Compatibility The previous version of...
Whilst integration `tz-rs` in #1902, I noticed that there was no pure rust `no-std` implementations of `strftime`. Research: - `chrono` - tightly coupled with `chrono` itself - `time` - formatting...
[Test Suites](https://releasenotes.docs.salesforce.com/en-us/spring16/release-notes/rn_apex_tests.htm#rn_apex_tests_test_suites) were just launched in Spring 16. Some support for them would be super helpful. Usecase: I have a particular feature that I want to run a set of...
Generated from https://github.com/artichoke/artichoke/pull/2182#issuecomment-1257154057 Ruby docs ref: https://ruby-doc.org/core-3.1.2/String.html#method-i-3D-3D. Relevant part: > Returns true if object has the **same length** and content; as self; false otherwise. And it looks like we're currently...
This appears to still be hanging over from mruby days (after looking at some of the comments, mruby was UTF-8 only). Some examples: - `String#force_encoding` doesn't change encoding https://github.com/artichoke/artichoke/blob/trunk/artichoke-backend/src/extn/core/string/string.rb#L606-L610 -...
By extracting out `Encoding` into it's own module, we can start to rely on some of the implementations in `spinoso-string` to provide the functionality. Some rough todos: - [ ]...
I've been trying to clean up ruby `spec` for `Time`, and this is one of the failures in this specific suite: https://github.com/artichoke/artichoke/blob/trunk/spec-runner/vendor/spec/core/time/shared/gm.rb#L59-L69 :warning: Important note about Timezone support for Artichoke...
I recently discovered this was breaking in `airb`: ``` >>> Time.at(1, in: "Z") Traceback (most recent call last): 2: from (airb):1 1: from (airb):1:in at TypeError (no implicit conversion of...
Normally I'd just create a PR for this, however it looks like a not insignificant amount of work in order to get there due to the way the way these...