Flowdock
method

rake_tasks

Importance_0
v6.1.7.7 - Show latest stable - 0 notes - Class: RakeCommand
rake_tasks() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/rake/rake_command.rb, line 29
          def rake_tasks
            require_rake

            return @rake_tasks if defined?(@rake_tasks)

            require_application!

            Rake::TaskManager.record_task_metadata = true
            Rake.application.instance_variable_set(:@name, "rails")
            load_tasks
            @rake_tasks = Rake.application.tasks.select(&:comment)
          end
Register or log in to add new notes.