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