Sha256: 337b5942619989ce4d603bb6ca3b9dd6d17bfbae12138bd65a2997f943cbbf7f

Contents?: true

Size: 402 Bytes

Versions: 1

Compression:

Stored size: 402 Bytes

Contents

difficulty 2
description "Identify who put a password inside the file `config.rb`."

setup do
  init_from_level
  system "git branch -m master"
end

solution do
  offender = repo.commit("97bdd0cccf9f4b8730f78cb53a81a74f205dbcc2").author.name
  request("Who made the commit with the password?").downcase.strip == offender.downcase
end

hint do
  puts "You want to research the `git blame` command."
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
githug-0.5.1 levels/blame.rb