Sha256: 3687cafd1e2708dcd4c1a649e596c924560ecfb2a3a20cf1ed43be93c74fd485
Contents?: true
Size: 1.07 KB
Versions: 10
Compression:
Stored size: 1.07 KB
Contents
garlic do repo 'rails', :url => 'git://github.com/rails/rails' repo 'rspec', :url => 'git://github.com/dchelimsky/rspec' repo 'rspec-rails', :url => 'git://github.com/dchelimsky/rspec-rails' repo 'factory_girl', :url => 'git://github.com/thoughtbot/factory_girl' repo 'machinist', :url => 'git://github.com/notahat/machinist' repo 'cucumber', :url => 'git://github.com/aslakhellesoy/cucumber' repo 'webrat', :url => 'git://github.com/brynary/webrat' repo 'pickle', :path => '.' ['2-3-stable', '2-2-stable', '2-1-stable'].each do |rails| target rails, :tree_ish => "origin/#{rails}" do prepare do plugin 'pickle', :clone => true plugin 'rspec' plugin 'rspec-rails' do `script/generate rspec -f` end plugin 'factory_girl' plugin 'cucumber' do `script/generate cucumber -f` end plugin 'machinist' plugin 'webrat' end run do cd "vendor/plugins/pickle" do sh "rake rcov:verify && rake features" end end end end end
Version data entries
10 entries across 10 versions & 1 rubygems