AbstractCommand: fix return type of .abstract?

This commit is contained in:
Misty De Meo 2017-05-29 16:36:01 -07:00
parent 4ffca8faa2
commit 087035868a
No known key found for this signature in database
GPG Key ID: 76CF846A2F674B2C

View File

@ -15,7 +15,7 @@ module Hbc
end end
def self.abstract? def self.abstract?
name.split("::").last =~ /^Abstract[^a-z]/ name.split("::").last.match?(/^Abstract[^a-z]/)
end end
def self.visible def self.visible