aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/version.rb
blob: b63e39b8d20c2df7d8ab1d775e02c4da16b4a1b4 (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: false

module Bundler
  VERSION = "2.1.2".freeze

  def self.bundler_major_version
    @bundler_major_version ||= VERSION.split(".").first.to_i
  end
end