File: version.rb

package info (click to toggle)
ruby-version-gem 1.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 144 kB
  • sloc: ruby: 105; makefile: 4
file content (12 lines) | stat: -rw-r--r-- 392 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
# frozen_string_literal: true

module VersionGem
  module Version
    VERSION = '1.1.1'.freeze
    # This would work in this gem, but not in external libraries,
    #   because version files are loaded in Gemspecs before bundler
    #   has a chance to load dependencies.
    # Instead, see lib/version_gem.rb for a solution that will work everywhere
    # extend VersionGem::Basic
  end
end