Skip to content

Instantly share code, notes, and snippets.

@jackdempsey
Created August 5, 2008 04:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackdempsey/4029 to your computer and use it in GitHub Desktop.
Save jackdempsey/4029 to your computer and use it in GitHub Desktop.
diff --git a/tools/merb-dev.rake b/tools/merb-dev.rake
index 0bfca75..988bec4 100644
--- a/tools/merb-dev.rake
+++ b/tools/merb-dev.rake
@@ -83,14 +83,13 @@ namespace :merb do
# Usage: sake merb:install:all
desc 'Install merb-core, merb-more, and merb-plugins'
- task :all => ['merb:check_outside_merb_dir', 'merb:install:core', 'merb:install:more', 'merb:install:plugins', 'merb:install:extlib']
+ task :all => ['merb:check_outside_merb_dir', 'merb:install:extlib', 'merb:install:core', 'merb:install:more', 'merb:install:plugins']
# Usage: sake merb:install:core
desc 'Install merb-core and extlib'
task :core do
puts "\nInstalling merb-core and extlib..."
sh "cd merb/merb-core && rake install && cd ../.."
- sh "cd merb/extlib && rake install && cd ../.."
end
# Usage: sake merb:install:more
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment