# File lib/bummr/cli.rb, line 26
    def update
      system("bundle install")
      display_info

      if yes? "Are you ready to use Bummr? (y/n)"
        check
        log("Bummr update initiated #{Time.now}")

        outdated_gems = Bummr::Outdated.instance.outdated_gems(
          all_gems: options[:all], group: options[:group]
        )

        if outdated_gems.empty?
          puts "No outdated gems to update".color(:green)
        else
          Bummr::Updater.new(outdated_gems).update_gems

          git.rebase_interactive(BASE_BRANCH)
          test
        end
      else
        puts "Thank you!".color(:green)
      end
    end