summaryrefslogtreecommitdiff
path: root/task/bundler_2.rake
blob: b76b63d85f525666c57745dade6dbd4581d7bbab (plain)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

namespace :bundler_2 do
  task :install do
    ENV["BUNDLER_SPEC_SUB_VERSION"] = "2.0.0.dev"
    Rake::Task["spec:travis:sub_version"].invoke
    Rake::Task["install"].invoke
    sh("git", "checkout", "--", "lib/bundler/version.rb")
  end
end