Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
O
oh-my-fish
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nanahira
oh-my-fish
Commits
fdf3793b
Commit
fdf3793b
authored
Nov 02, 2014
by
Bruno Pinto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removing deprecated rake plugin
parent
4b3087d3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
36 deletions
+0
-36
plugins/rake/completions/rake.fish
plugins/rake/completions/rake.fish
+0
-33
plugins/rake/rake.load
plugins/rake/rake.load
+0
-3
No files found.
plugins/rake/completions/rake.fish
deleted
100644 → 0
View file @
4b3087d3
# fish completion for rake
function __fish_rake_tasks
rake -T ^/dev/null | awk '{print $2"\t"substr($0, index($0, $4))}'
end
### commands
complete -c rake -f -a '(__fish_rake_tasks)'
complete -c rake -s C -l classic-namespace -d 'Put Task and FileTask in the top level namespace'
complete -c rake -s D -l describe -x -d 'Describe the tasks (matching optional PATTERN), then exit.'
complete -c rake -s n -l dry-run -d 'Do a dry run without executing actions.'
complete -c rake -s e -l execute -x -d 'Execute some Ruby code and exit.'
complete -c rake -s p -l execute-print -x -d 'Execute some Ruby code, print the result, then exit.'
complete -c rake -s E -l execute-continue -x -d 'Execute some Ruby code, then continue with normal task processing.'
complete -c rake -s I -l libdir -x -d 'Include LIBDIR in the search path for required modules.'
complete -c rake -s N -l no-search -l nosearch -d 'Do not search parent directories for the Rakefile.'
complete -c rake -s P -l prereqs -d 'Display the tasks and dependencies, then exit.'
complete -c rake -s q -l quiet -d 'Do not log messages to standard output.'
complete -c rake -s f -l rakefile -x -d 'Use FILE as the rakefile.'
complete -c rake -s R -l rakelibdir -x -d "Auto-import any .rake files in RAKELIBDIR. (default is 'rakelib')"
complete -c rake -l rakelib
complete -c rake -s r -l require -x -d 'Require MODULE before executing rakefile.'
complete -c rake -l rules -d 'Trace the rules resolution.'
complete -c rake -s s -l silent -d "Like --quiet, but also suppresses the 'in directory' announcement."
complete -c rake -s g -l system -d "Using system wide (global) rakefiles (usually '~/.rake/*.rake')."
complete -c rake -s G -l no-system -l nosystem -d 'Use standard project Rakefile search paths, ignore system wide rakefiles.'
complete -c rake -s T -l tasks -x -d 'Display the tasks (matching optional PATTERN) with descriptions, then exit.'
complete -c rake -s t -l trace -d 'Turn on invoke/execute tracing, enable full backtrace.'
complete -c rake -s v -l verbose -d 'Log message to standard output.'
complete -c rake -s V -l version -d 'Display the program version.'
complete -c rake -s W -l where -x -d 'Describe the tasks (matching optional PATTERN), then exit.'
complete -c rake -s X -l no-deprecation-warnings -d 'Disable the deprecation warnings.'
complete -c rake -s h -s H -l help -d 'Display this help message.'
plugins/rake/rake.load
deleted
100644 → 0
View file @
4b3087d3
set_color red
echo 'Rake plugin deprecated.'
set_color normal
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