aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/commands/version/version_command.rb
blob: 4f3fbfca1b91bf48d88759c27f24255b0fbb4866 (plain) (blame)
1
2
3
4
5
6
7
8
9
module Rails
  module Command
    class VersionCommand < Base
      def perform
        Rails::Command.invoke :application, [ "--version" ]
      end
    end
  end
end