mirror of
https://github.com/ruby/ruby.git
synced 2025-09-18 01:54:00 +02:00

[Bug #19350] * Merge RubyGems-3.4.2 and Bundler-2.4.2 * Merge RubyGems-3.4.3 and Bundler-2.4.3 * Generate parser-text.rb of racc when sync it * Ignore LICENSE files of libraries vendored in rubygems [ci skip] * Adjust spec of bundler like as `sync_default_gems` [ci skip] * Fixed a typo * Removed vendored LICENSE file. * Update LEGAL sections for pub_grub * Merge RubyGems-3.4.4 and Bundler-2.4.4 * Merge RubyGems-3.4.5 and Bundler-2.4.5 Co-authored-by: Nobuyoshi Nakada <nobu@ruby-lang.org>
13 lines
259 B
Ruby
13 lines
259 B
Ruby
# frozen_string_literal: false
|
|
|
|
module Bundler
|
|
VERSION = "2.4.5".freeze
|
|
|
|
def self.bundler_major_version
|
|
@bundler_major_version ||= VERSION.split(".").first.to_i
|
|
end
|
|
|
|
def self.gem_version
|
|
@gem_version ||= Gem::Version.create(VERSION)
|
|
end
|
|
end
|