railties/lib/rails/commands/about/about_command.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Rails
  module Command
    class AboutCommand < Base # :nodoc:
      desc "about", "List versions of all Rails frameworks and the environment"
      def perform
        boot_application!

        say Rails::Info
      end
    end
  end
end