Sha256: d51a345f78681e8c54f050a23f3cbe3cc806e831b604616a770ec1ce508b6e33
Contents?: true
Size: 563 Bytes
Versions: 1
Compression:
Stored size: 563 Bytes
Contents
# frozen_string_literal: true module FactoryBot # The gem version details. module Instrumentation # The version of the +factory_bot_instrumentation+ gem VERSION = '1.1.4' class << self # Returns the version of gem as a string. # # @return [String] the gem version as string def version VERSION end # Returns the version of the gem as a +Gem::Version+. # # @return [Gem::Version] the gem version as object def gem_version Gem::Version.new VERSION end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
factory_bot_instrumentation-1.1.4 | lib/factory_bot/instrumentation/version.rb |