# desc “Explaining what the task does”

namespace :tagit do
  # Task goes here
  namespace :next do
    desc "Increment the major version number"
    task :major do

    end
    desc "Increment the minor version number"
    task :minor do

    end
    desc "Increment the patch version number"
    task :patch do

    end
  end
end