lib/fd/version.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

# Here only the _VERSION_ of Fd is defined
# All other code is in lib/fd.rb
#
class Fd
  VERSION = '1.0.0'

  def self.version
    VERSION
  end
end