lib/rubocop/performance/version.rb in rubocop-performance-1.8.1 vs lib/rubocop/performance/version.rb in rubocop-performance-1.9.0

- old
+ new

@@ -1,9 +1,14 @@ # frozen_string_literal: true module RuboCop module Performance + # This module holds the RuboCop Performance version information. module Version - STRING = '1.8.1' + STRING = '1.9.0' + + def self.document_version + STRING.match('\d+\.\d+').to_s + end end end end