Skip to content

Commit

Permalink
Add default garlic generated file
Browse files Browse the repository at this point in the history
  • Loading branch information
smtlaissezfaire committed Sep 22, 2009
1 parent 2fc026e commit d90aeee
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions garlic.rb
@@ -0,0 +1,26 @@
# typical vanilla garlic configuration

garlic do
# this plugin
repo "markaby", :path => '.'

# other repos
repo "rails", :url => "git://github.com/rails/rails"

# target railses
['origin/master', 'origin/2-2-stable', 'origin/2-1-stable', 'origin/2-0-stable'].each do |rails|

# declare how to prepare, and run each CI target
target "Rails: #{rails}", :tree_ish => rails do
prepare do
plugin "markaby", :clone => true # so we can work in targets
end

run do
cd "vendor/plugins/markaby" do
sh "rake"
end
end
end
end
end

0 comments on commit d90aeee

Please sign in to comment.