Structure for rake files
Is this possible to view structure for *.rake files with rake tasks definition?
Example.
Code
namespace :my_tasks do
desc "Description of my task"
task :my_task_name do
# my task content
end
desc "My another task"
task :second_task do
# content
end
end
Will be viewed in structure view as:
my_tasks
|
`- task
`- second_task
请先登录再写评论。
"Structure View" support isn't implemented yet, see http://youtrack.jetbrains.net/issue/RUBY-1331 issue. Also take a look on "Tools | Rake Tasks" and "Tools | Run Rake Task.." actions which show available tasks from your rakefile
Thanks for link to issue. Will be grate to see smart view in RubyMine 3.0