[#92891] Question: ruby 2.7.0-preview1 also upgrades bundler to 2.1.0.pre.1? — Al Snow <jasnow@...>
Tried the new 2.7.0-preview1 upgrade to Ruby and see that bundler is also upgraded (to 2.1.0.pre.1).
5 messages
2019/05/30
[#92892] Re: Question: ruby 2.7.0-preview1 also upgrades bundler to 2.1.0.pre.1?
— SHIBATA Hiroshi <hsbt@...>
2019/05/30
Bundler 2.1.0.pree.1 is the expected version.
[ruby-core:92552] [Ruby trunk Feature#15824] respond_to pattern for pattern match
From:
shevegen@...
Date:
2019-05-05 15:32:40 UTC
List:
ruby-core #92552
Issue #15824 has been updated by shevegen (Robert A. Heiler). I don't want to comment so much on the issue as such, but I would like to point out that it may be a better idea to start with a new idea not on highest complexity. I am not sure if everyone fully understood pattern matching yet so in my personal opinion it may be better to see how pattern matching is used before making it more complex (including syntactic changes). But that's just my opinion, anyway; some of the syntax appears to become no longer recognizable ruby (to me). ---------------------------------------- Feature #15824: respond_to pattern for pattern match https://bugs.ruby-lang.org/issues/15824#change-77919 * Author: fukajun (Jun Fukaya) * Status: Open * Priority: Normal * Assignee: * Target version: ---------------------------------------- rubyに追加されそうなパターンマッチの機能について... Interger, Array など constantを書くことで、オブジェクトのクラスにマッチングさせる機能があるのを拝見しました。 duck typingを確認するようなパターンマッチがかけるとrubyらしいのではないかと思ってこちらに書いてみることにしました。 respond_to pattern ```ruby class Runner def run end def stop end end runner = Runner.new case runner in .run & .stop :reachable in .start & .stop :unreachable end ``` -- https://bugs.ruby-lang.org/ Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe> <http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>