Skip to content
Snippets Groups Projects
Unverified Commit a998c364 authored by Kid's avatar Kid Committed by GitHub
Browse files

Reduce potential modifications to frozen string

parent d3887df2
No related branches found
No related tags found
No related merge requests found
......@@ -142,8 +142,8 @@ class Requirement
def infer_name
klass = self.class.name || self.class.to_s
klass.sub!(/(Dependency|Requirement)$/, "")
klass.sub!(/^(\w+::)*/, "")
klass = klass.sub(/(Dependency|Requirement)$/, "")
klass = klass.sub(/^(\w+::)*/, "")
return klass.downcase if klass.present?
return @cask if @cask.present?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment