Sha256: 9df7292e723ac8d84e2627efc286f4eeeea52dbe41559603632f3d941032a956
Contents?: true
Size: 823 Bytes
Versions: 1
Compression:
Stored size: 823 Bytes
Contents
difficulty 4 description "You need to merge mybranch into the current branch (master). But there may be some incorrect changes in mybranch which may cause conflicts. Solve any merge-conflicts you come across and finish the merge." setup do init_from_level system "git branch -m master" end solution do solved = true solved = false unless repo.head.name == "master" solved = false unless repo.commits("master")[0].parents.length == 2 txt = File.read("poem.txt") solved = false if txt =~ /[<>=|]/ solved = false unless txt =~ /Sat on a wall/ solved end hint do puts ["First you have to do a merge. Then resolve any conflicts and finish the merge", "Take a look at the sections on merge conflicts in 'git merge'.", "Remove the unnecessary lines in `poem.txt`, so only the correct poem remains."] end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
githug-0.5.1 | levels/conflict.rb |