lib/nutrella/task_board_name.rb in nutrella-1.5.4 vs lib/nutrella/task_board_name.rb in nutrella-1.6.0

- old
+ new

@@ -7,10 +7,10 @@ # Knows the name of the task board associated with the current git branch. # # Note: will also accept the name of a branch as an argument. # class TaskBoardName - def self.board_name(args) + def self.board_name_from_git_branch(args) git_branch_name = args[0] return git_branch_name if git_branch_name.present? git_branch_name, status = Open3.capture2("git rev-parse --abbrev-ref HEAD") return git_branch_name.chomp if status.success?