Sha256: c5d686aaf4870eb38f4ac74ad30fef2d6bff54a7111caaac7207108805efa3c8
Contents?: true
Size: 347 Bytes
Versions: 20
Compression:
Stored size: 347 Bytes
Contents
difficulty 2 description "We have a git repo and we want to tag the current commit with new_tag." setup do repo.init FileUtils.touch("somefile.txt") repo.add("somefile.txt") repo.commit_all("Added some file to the repo") end solution do repo.tags.first.name == "new_tag" end hint do puts "Take a look at `git tag`" end
Version data entries
20 entries across 20 versions & 1 rubygems