This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
SUP_LIB_DIRS = %w(lib lib/sup lib/sup/modes) |
| 2 |
SUP_EXECUTABLES = %w(sup sup-add sup-cmd sup-config sup-dump sup-import-dump sup-recover-sources sup-server sup-sync sup-sync-back sup-tweak-labels) |
| 3 |
SUP_EXTRA_FILES = %w(CONTRIBUTORS README.txt LICENSE History.txt ReleaseNotes) |
| 4 |
SUP_FILES = |
| 5 |
SUP_EXTRA_FILES + |
| 6 |
SUP_EXECUTABLES.map { |f| "bin/#{f}" } + |
| 7 |
SUP_LIB_DIRS.map { |d| Dir["#{d}/*.rb"] }.flatten |
| 8 |
|
| 9 |
if $0 == __FILE__ # if executed from commandline |
| 10 |
puts SUP_FILES |
| 11 |
end |