From: "phluid61 (Matthew Kerwin)" Date: 2013-01-16T13:25:17+09:00 Subject: [ruby-core:51465] [ruby-trunk - Feature #7704] Add a list of enabled (experimental) language features. Issue #7704 has been updated by phluid61 (Matthew Kerwin). naruse (Yui NARUSE) wrote: > mpapis (Michal Papis) wrote: > > With multiple Ruby implementations and "experimental" features like "refinements" it would be nice to have an array or hash including list of enabled language features so developers could check it instead of auto-discovering code with some hacks. > > Such feature list system is used on many languages/platforms like W3C DOM. > As far as my understand such experiment are failed because such feature list is too rough to use. > Features are not all or nothing in real world, and they often have bugs. > So auto discovery won't work. Not offering an opinion as such, just adding to the discussion. I have in mind a related system: the OpenGL Extension Library. The registry of official language extensions is managed by an Architecture Review Board, and any OpenGL program can query the framework to detect the presence of an extension. If Ruby were to support a similar system someone would be responsible for maintaining a registry of language features, including an explicit spec describing each feature (to which an implementation must fully adhere if it says it supports it). For example, the current "refinements" feature could be bundled under the name :REFINEMENTS_2_0 and match the current spec exactly; where a future version (e.g. :REFINEMENTS_2_1) would have a different spec. That way a particular implementation may choose to implement some 2.0 features (e.g. kwargs) without others (e.g. refinements). However, I imagine this would quickly become an unwieldy list, as per the OpenGL Extensions. ---------------------------------------- Feature #7704: Add a list of enabled (experimental) language features. https://bugs.ruby-lang.org/issues/7704#change-35443 Author: mpapis (Michal Papis) Status: Open Priority: Normal Assignee: Category: Target version: With multiple Ruby implementations and "experimental" features like "refinements" it would be nice to have an array or hash including list of enabled language features so developers could check it instead of auto-discovering code with some hacks. Additionally a new keyword like `require_features :refinements, ...` could be introduced to allow easy validation via either exception or return status. -- http://bugs.ruby-lang.org/