blob: 3e2112b6d4a5110843ecef965d327f1af0adb71d (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
 | # frozen_string_literal: true
module Rails
  module Command
    class VersionCommand < Base # :nodoc:
      def perform
        Rails::Command.invoke :application, [ "--version" ]
      end
    end
  end
end
 |