Class: Rails::Command::StatsCommand

Inherits:
Base
  • Object
show all
Defined in:
lib/rails/commands/stats/stats_command.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from Base

banner, base_name, class_usage, command_name, default_command_root, desc, engine?, executable, exit_on_failure?, help, hide_command!, inherited, namespace, perform, printing_commands, usage_path

Methods included from Actions

#boot_application!, #load_environment_config!, #load_generators, #load_tasks, #require_application!, #set_application_directory!

Instance Method Details

#performObject



7
8
9
10
11
12
13
14
15
16
# File 'lib/rails/commands/stats/stats_command.rb', line 7

def perform
  require "rails/code_statistics"
  boot_application!

  stat_directories = Rails::CodeStatistics.directories.map do |name, dir|
    [name, Rails::Command.application_root.join(dir)]
  end.select { |name, dir| File.directory?(dir) }

  Rails::CodeStatistics.new(*stat_directories).to_s
end