This commit is contained in:
erwanlr
2015-06-24 11:46:06 +01:00
parent 5902a483b4
commit 4c800bacaa
4 changed files with 3 additions and 23 deletions

View File

@@ -12,6 +12,7 @@ class WpVersion < WpItem
# The version number
attr_accessor :number
alias_method :version, :number # Needed to have the right behaviour in Vulnerable#vulnerable_to?
# @return [ Array ]
def allowed_options; super << :number << :found_from end
@@ -29,5 +30,4 @@ class WpVersion < WpItem
a << node.text.to_s
end
end
end

View File

@@ -14,12 +14,6 @@ class WpVersion < WpItem
# @return [ String ]
def identifier
@number
end
# @return [ String ]
# def vulns_xpath
# "//wordpress[@version='#{@number}']/vulnerability"
# end
end
end
end