lib/makit/tasks.rb in makit-0.0.38 vs lib/makit/tasks.rb in makit-0.0.39

- old
+ new

@@ -13,39 +13,39 @@ end end desc "Remove any temporary products." task :clean do - puts ":clean".colorize(:blue) + Makit::SHOW.task(:blue) Makit::RUNNER.run(Makit::RUNNER.parse_command_request("git clean -dXf")) end desc "Integrate changes into the git repository." task :integrate do - puts ":integrate".colorize(:blue) + Makit::SHOW.task(:integrate) Makit::Git.integrate end desc "Sync changes with the git repository." task :sync do - puts ":sync".colorize(:blue) + Makit::SHOW.task(:blue) Makit::Git.sync end task :pull do Makit::SHOW.task(:pull) Makit::Git.pull end desc "Format source code." task :format do - puts ":format".colorize(:blue) + Makit::SHOW.task(:blue) Makit::RUNNER.try("rufo .") if File.exist?("Gemfile") || File.exist?("Rakefile") end desc "Update dependencies." task :update do - puts ":update".colorize(:blue) + Makit::SHOW.task(:blue) system("bundle update") if File.exist?("Gemfile") # glob all *.csproj files Dir.glob("**/*.csproj").each do |file| "dotnet format #{file}".run end