├── .gitignore ├── LICENSE ├── README.md ├── debian ├── changelog ├── compat ├── control ├── copyright ├── dirs ├── docs └── rules ├── rake ├── release └── test ├── check_rake_files ├── .rake_tasks~ ├── Rakefile ├── description ├── fresher ├── lib │ └── include.rake └── tasks ├── no_rakefile ├── .rake_tasks~ ├── description └── tasks ├── run ├── run_from_subdirectory ├── Rakefile ├── description ├── subdirectory │ └── .rake_tasks~ └── tasks ├── update_cache ├── .rake_tasks~ ├── Rakefile ├── description ├── fresher └── tasks └── use_cache ├── .rake_tasks~ ├── Rakefile ├── description ├── fresher └── tasks /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | *~ 3 | 4 | build 5 | !.rake_tasks~ 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/README.md -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 7 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/dirs: -------------------------------------------------------------------------------- 1 | /etc/bash_completion.d/ 2 | -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | README.md 2 | -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/debian/rules -------------------------------------------------------------------------------- /rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/rake -------------------------------------------------------------------------------- /release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/release -------------------------------------------------------------------------------- /test/check_rake_files/.rake_tasks~: -------------------------------------------------------------------------------- 1 | Rakefile 2 | -------------------------------------------------------------------------------- /test/check_rake_files/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/check_rake_files/Rakefile -------------------------------------------------------------------------------- /test/check_rake_files/description: -------------------------------------------------------------------------------- 1 | check modification time for **/*.rake files 2 | -------------------------------------------------------------------------------- /test/check_rake_files/fresher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/check_rake_files/fresher -------------------------------------------------------------------------------- /test/check_rake_files/lib/include.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/check_rake_files/lib/include.rake -------------------------------------------------------------------------------- /test/check_rake_files/tasks: -------------------------------------------------------------------------------- 1 | Rakefile rake 2 | -------------------------------------------------------------------------------- /test/no_rakefile/.rake_tasks~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/no_rakefile/description: -------------------------------------------------------------------------------- 1 | don't do anything if Rake file not found 2 | -------------------------------------------------------------------------------- /test/no_rakefile/tasks: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/run -------------------------------------------------------------------------------- /test/run_from_subdirectory/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/run_from_subdirectory/Rakefile -------------------------------------------------------------------------------- /test/run_from_subdirectory/description: -------------------------------------------------------------------------------- 1 | seek for Rakefile in parent directories 2 | -------------------------------------------------------------------------------- /test/run_from_subdirectory/subdirectory/.rake_tasks~: -------------------------------------------------------------------------------- 1 | subdirectory 2 | -------------------------------------------------------------------------------- /test/run_from_subdirectory/tasks: -------------------------------------------------------------------------------- 1 | subdirectory 2 | -------------------------------------------------------------------------------- /test/update_cache/.rake_tasks~: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /test/update_cache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/update_cache/Rakefile -------------------------------------------------------------------------------- /test/update_cache/description: -------------------------------------------------------------------------------- 1 | update cache if it's outdated 2 | -------------------------------------------------------------------------------- /test/update_cache/fresher: -------------------------------------------------------------------------------- 1 | .rake_tasks~ 2 | Rakefile 3 | -------------------------------------------------------------------------------- /test/update_cache/tasks: -------------------------------------------------------------------------------- 1 | in out 2 | -------------------------------------------------------------------------------- /test/use_cache/.rake_tasks~: -------------------------------------------------------------------------------- 1 | in 2 | -------------------------------------------------------------------------------- /test/use_cache/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ai/rake-completion/HEAD/test/use_cache/Rakefile -------------------------------------------------------------------------------- /test/use_cache/description: -------------------------------------------------------------------------------- 1 | use cache file 2 | -------------------------------------------------------------------------------- /test/use_cache/fresher: -------------------------------------------------------------------------------- 1 | Rakefile 2 | .rake_tasks~ 3 | -------------------------------------------------------------------------------- /test/use_cache/tasks: -------------------------------------------------------------------------------- 1 | in 2 | --------------------------------------------------------------------------------