Rakefile in az-2.0.1 vs Rakefile in az-2.0.2

- old
+ new

@@ -30,8 +30,12 @@ # # # # Run Specs desc "#{gemspec.name} | Spec" task :spec do - sh "for file in spec/*.rb; do ruby $file; done" + if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/ + sh "for %f in (spec/\*.rb) do ruby spec/%f" + else + sh "for file in spec/*.rb; do ruby $file; done" + end end task default: :spec