Skip to content

Commit

Permalink
Small Rakefile consolidation
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger committed Jun 28, 2011
1 parent a2b5a02 commit 6f4e39e
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions Rakefile
Expand Up @@ -45,19 +45,13 @@ end
end

desc "Build all adapters"
task "all:release" => "release"
task "all:release" => ["release", *ADAPTERS.map { |f| "#{f}:release" }]

desc "Install all adapters"
task "all:install" => "install"
task "all:install" => ["install", *ADAPTERS.map { |f| "#{f}:install" }]

desc "Release all adapters"
task "all:build" => "build"

namespace :all do
task :build => ADAPTERS.map { |f| "#{f}:build" }
task :install => ADAPTERS.map { |f| "#{f}:install" }
task :release => ADAPTERS.map { |f| "#{f}:release" }
end
task "all:build" => ["build", *ADAPTERS.map { |f| "#{f}:build" }]

task :filelist do
puts FileList['pkg/**/*'].inspect
Expand Down

0 comments on commit 6f4e39e

Please sign in to comment.