class GemHadar

def master_push_task

def master_push_task
  namespace :master do
    desc "Push master to git remote"
    task :push do
      sh "git push #{git_remote} master"
    end
  end
end