class GemHadar

def version_diff_task

def version_diff_task
  namespace :version do
    desc m = "Displaying the diff from HEAD to the last version tag"
    task :diff do
      puts `git diff --color=always v#{version}..HEAD`
    end
  end
end