AndyMaleh (Andy Maleh)
- Login: AndyMaleh
- Registered on: 11/29/2019
- Last sign in: 08/29/2021
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 2 | 3 |
Activity
12/24/2020
-
03:48 AM Ruby Bug #16383: TracePoint does not report calls to attribute reader methods
- Hi,
I compensated for lack of this feature by implementing **manually-configured** computed data-binding in [Glimmer DSL for Tk](https://github.com/AndyObtiva/glimmer-dsl-tk#hello-computed) (Ruby Desktop Development GUI Library), [Gli...
08/20/2020
-
08:14 AM Ruby Bug #17126: String#gsub fails to escape single quote for shell
- Got it. I missed that completely in the documentation, thinking it wasn't related to our use of `\'`.
Thanks a lot for explaining and for supporting the Ruby programming language in the open-source community.
08/19/2020
-
03:24 PM Ruby Bug #17126 (Closed): String#gsub fails to escape single quote for shell
- Hi, I don't know if I'm misunderstanding how `String#gsub` works, but I encountered an issue in the Ruby "git" gem with escaping single quotes for shell, which I fixed and [contributed back](https://github.com/ruby-git/ruby-git/pull/480)...
06/01/2020
-
09:27 PM Ruby Feature #16928: Array#include_all? & Array#include_any?
- I am glad others have reported too. This confirms what I said about this being "very handy".
In response to Marc-Andre Lafortune saying "FYI, you can already do these with sets:"
Please note what I said about being: "more readable than... -
03:40 PM Ruby Feature #16928 (Open): Array#include_all? & Array#include_any?
- Hi,
The Ruby Array class is currently missing #include_all? and #include_any? to check if current Array includes all elements of another Array or any.
I implemented in this Ruby Gem:
https://github.com/AndyObtiva/array_include_met...
11/30/2019
-
03:17 AM Ruby Bug #16383 (Closed): TracePoint does not report calls to attribute reader methods
- TracePoint does not report calls to attribute reader methods (e.g. methods defined using `attr_accessor` or `attr_reader`.)
**Code sample to demonstrate:**
```ruby
class Person
attr_accessor :first_name
attr_accessor :last_n...