class FileConcat::Version

Pulls the current version of the library.

Public Class Methods

version() click to toggle source

This method does:

Retrieves the version of the library.

With params:

N/A

And returns:

@return version <String> - the version of the library

And is used like:

FileConcat::Version.version

# File lib/file_concat/version.rb, line 22
def self.version
  File.read('VERSION').strip
end