Rakefile in itamae-plugin-recipe-consul-0.1.0.beta1 vs Rakefile in itamae-plugin-recipe-consul-0.1.0.beta2

- old
+ new

@@ -7,22 +7,23 @@ namespace :spec do task :all => HOSTS HOSTS.each do |host| + desc "Run serverspec to #{host}" RSpec::Core::RakeTask.new(host.to_sym) do |t| puts "Running tests to #{host} ..." ENV["TARGET_HOST"] = host - t.pattern = "spec/*_spec.rb" + t.pattern = "spec/**/*_spec.rb" end end end namespace :itamae do task :all => HOSTS HOSTS.each do |host| - desc "Running itamae to #{host}" + desc "Run itamae to #{host}" task host do sh "bundle exec itamae ssh --host=#{host} --vagrant --node-yaml=recipes/node.yml recipes/install.rb" end end end