ruby-core@ruby-lang.org archive (unofficial mirror)
 help / color / mirror / Atom feed
From: zverok.offline@gmail.com
To: ruby-core@ruby-lang.org
Subject: [ruby-core:95236] [Ruby master Feature#16241] Shorter syntax for anonymous refinements
Date: Sat, 05 Oct 2019 22:05:59 +0000 (UTC)	[thread overview]
Message-ID: <redmine.journal-81909.20191005220558.052630b7c306d8b7@ruby-lang.org> (raw)
In-Reply-To: redmine.issue-16241.20191005190403@ruby-lang.org

Issue #16241 has been updated by zverok (Victor Shepelev).


I believe that is really super-good thing. As I've written elsewhere in this tracker, the most useful case for refinements is "in current module, I want some shortcuts for my code to look cleaner". For example, [here](https://github.com/zverok/drosterize) and [here](https://github.com/zverok/xkcdize) I experimented with representing some graphics algorithm in a most "readable" way, adding really small methods to core (Numeric) and RMagick objects. The point is "here, in this module, I crave for some things to exists in some objects". 

So, "inplace refinements" is probably the main kind of refinements the developer could care; while "refinements in a module" could be used, probably, for some "more hygienic" ActiveSupport-alike gems, or some specific blends of Ruby (like `using Geometry` with ton of specific geometry-related services added to numbers and matrices and whatnot).

----------------------------------------
Feature #16241: Shorter syntax for anonymous refinements
https://bugs.ruby-lang.org/issues/16241#change-81909

* Author: palkan (Vladimir Dementyev)
* Status: Open
* Priority: Normal
* Assignee: 
* Target version: 
----------------------------------------
The original discussion is here https://bugs.ruby-lang.org/issues/14344.

tl;dr
- Refinements are often used in-place with anonymous modules
- Having shorter syntax could lower the barrier of entry for Rubyist wanting to explore this feature
- Previous syntax suggestions were not accepted.


I suggest adding a shorter syntax (technically, API):

```ruby
# before
using(Module.new do
  refine Array do
    def foo;"bar";end
  end
end)

# after
refining Array do
  def foo; "bar"; end
end
```

The original idea was to use `using_refined` instead of `refining` but after discussing with Matz we decided that it's too verbose, and `refining` seems better. But is it good enough? Any thoughts?




-- 
https://bugs.ruby-lang.org/

  parent reply	other threads:[~2019-10-05 22:06 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <redmine.issue-16241.20191005190403@ruby-lang.org>
2019-10-05 19:04 ` [ruby-core:95234] [Ruby master Feature#16241] Shorter syntax for anonymous refinements dementiev.vm
2019-10-05 22:05 ` zverok.offline [this message]
2019-10-05 22:40 ` [ruby-core:95237] " shevegen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.ruby-lang.org/en/community/mailing-lists/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=redmine.journal-81909.20191005220558.052630b7c306d8b7@ruby-lang.org \
    --to=ruby-core@ruby-lang.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).