Rakefile in knife-solo-0.1.0 vs Rakefile in knife-solo-0.2.0.pre1

- old
+ new

@@ -16,11 +16,11 @@ desc 'Updates Manifest.txt with a list of files from git' task :manifest do git_files = `git ls-files`.split("\n") File.open('Manifest.txt', 'w') do |f| - f.puts (git_files - MANIFEST_IGNORES).join("\n") + f.puts((git_files - MANIFEST_IGNORES).join("\n")) end end task :release => :manifest # Returns the parsed RDoc for a single file as HTML @@ -74,6 +74,5 @@ end desc "Alias for test:units" task :test => ['test:units'] task :default => :test -