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

module Bundler
  VERSION = "2.0.0.dev".freeze

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