lib/git-cleanup/helper.rb in git-cleanup-0.1.2 vs lib/git-cleanup/helper.rb in git-cleanup-0.1.3

- old
+ new

@@ -1,15 +1,15 @@ class GitCleanup module Helper - def self.boolean(question) + def self.boolean(question, &block) puts "#{question} (y/n)" answer = STDIN.gets.chomp if answer == 'y' yield elsif answer == 'n' return false else - boolean(question) + boolean(question, &block) end end end end \ No newline at end of file