Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Oh My Zsh
Commits
51c10783
Commit
51c10783
authored
Aug 13, 2016
by
Aleksey Ivanov
Committed by
Marc Cornellà
Aug 13, 2016
Browse files
refresh .rake_tasks when lib/tasks changed (#5111)
parent
906a7731
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/rake-fast/rake-fast.plugin.zsh
View file @
51c10783
...
...
@@ -8,7 +8,19 @@ _rake_refresh () {
}
_rake_does_task_list_need_generating
()
{
[[
!
-f
.rake_tasks
]]
||
[[
Rakefile
-nt
.rake_tasks
]]
[[
!
-f
.rake_tasks
]]
||
[[
Rakefile
-nt
.rake_tasks
]]
||
(
_is_rails_app
&&
_tasks_changed
)
}
_is_rails_app
()
{
[[
-e
"bin/rails"
]]
||
[
-e
"script/rails"
]
}
_tasks_changed
()
{
local
is_changed
=
1
for
file
in
lib/tasks/
**
/
*
.rake
;
do
if
[[
$file
-nt
.rake_tasks
]]
;
then
is_changed
=
0
;
fi
done
return
is_changed
}
_rake_generate
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment