diff options
Diffstat (limited to 'lib/dbshell/rails.rb')
-rw-r--r-- | lib/dbshell/rails.rb | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lib/dbshell/rails.rb b/lib/dbshell/rails.rb index 803b4ae..cac7229 100644 --- a/lib/dbshell/rails.rb +++ b/lib/dbshell/rails.rb @@ -2,6 +2,13 @@ require "dbshell/rails/version" module DBShell module Rails - # Your code goes here... + Dir[ + File.join(File.dirname(__FILE__), + 'rails', + 'tasks', + '**/*.rake') + ].each do |rake| + load rake + end end end |