Rakefile in spreewald-1.10.0 vs Rakefile in spreewald-1.10.1

- old
+ new

@@ -27,11 +27,11 @@ desc 'Run tests on all test apps' task :features do success = true for_each_directory_of('tests/**/Rakefile') do |directory| - success &= Bundler.clean_system("cd #{directory} && cuc") + success &= system("ruby -v && cd #{directory} && cuc") end fail "Tests failed" unless success end desc 'Install gems and run tests on several Ruby versions' @@ -51,12 +51,10 @@ end desc 'Bundle all test apps' task :bundle do for_each_directory_of('tests/**/Gemfile') do |directory| - Bundler.with_clean_env do - system("cd #{directory} && bundle install && gem install geordi") - end + system("cd #{directory} && bundle install && gem install geordi") end end end