summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorAlessio Caiazza <nolith@abisso.org>2012-02-06 11:05:22 +0100
committerAlessio Caiazza <nolith@abisso.org>2012-02-06 11:05:22 +0100
commit4a4a4a880925b1c5ff7313fe3d2853a37e7720a4 (patch)
tree59aa1b2a97b1eca2d86944aa55e2ba07b4a25234 /Rakefile
parent683d1bec4d27dcf8cfc62babb88cdcbabf2cb957 (diff)
Loading custom rake file from _rake/*.rake
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 1b0faad..e67a4b9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -104,4 +104,7 @@ end
def get_stdin(message)
print message
STDIN.gets.chomp
-end \ No newline at end of file
+end
+
+#Load custom rake scripts
+Dir['_rake/*.rake'].each { |r| load r }