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

module Bundler
  VERSION = "2.2.0.rc.2".freeze

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