class CvemonCve < ActiveRecord::Base
    def self.from_year(year)
        where("cve_id LIKE ?", "CVE-#{year}-%")
    end
end