Sha256: a3c9f3a7207eea5af08d992179cfb35872c7573b758408fb87c887e228f47994

Contents?: true

Size: 400 Bytes

Versions: 1

Compression:

Stored size: 400 Bytes

Contents

module Dradis
  module Plugins
    module CSVExport
      # Returns the version of the currently loaded CSV as a <tt>Gem::Version</tt>
      def self.gem_version
        Gem::Version.new VERSION::STRING
      end

      module VERSION
        MAJOR = 4
        MINOR = 10
        TINY  = 0
        PRE   = nil

        STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dradis-csv_export-4.10.0 lib/dradis/plugins/csv_export/gem_version.rb