Actions
Feature #16703
openNamespace parameter for `Module#name`
Status:
Open
Assignee:
-
Target version:
-
Description
I often see code that intends to remove a portion of the namespace from a module/class name like this:
class A; class B class C; end end end
A::B::C.name.delete_prefix("A::") # => "B::C"
A::B::C.name.delete_prefix("A::B::") # => "C"
I think a large portion of the use cases of the method String#delete_prefix
belongs to such use cases.
I propose to let Module#name
take an optional parameter that expresses the name space. The parameter should be either a module, string, or a symbol.
I am not sure whether a positional argument or a keyword argument is better.
Positional argument:
A::B::C.name("A") # => "B::C"
A::B::C.name(:A) # => "B::C"
A::B::C.name(A) # => "B::C"
A::B::C.name("A::B") # => "C"
A::B::C.name(:"A::B") # => "C"
A::B::C.name(A::B) # => "C"
Keyword argument:
A::B::C.name(namespace: "A") # => "B::C"
A::B::C.name(namespace: :A) # => "B::C"
A::B::C.name(namespace: A) # => "B::C"
A::B::C.name(namespace: "A::B") # => "C"
A::B::C.name(namespace: :"A::B") # => "C"
A::B::C.name(namespace: A::B) # => "C"
If the module/class does not belong to the namespace given as the parameter, then perhaps it would be a good idea to prepend the name with ::
.
class A; class B; class D end end end
class E end
A::B::C.name # => "A::B::C"
A::B::C.name(A::B::D) # => "::A::B::C"
A::B::C.name(E) # => "::A::B::C"
Actions
Like0
Like0Like0