Sha256: 0850885c7ee838593d71f8fa2653a19d6de708889b257431aaf0357d4f7d1d36

Contents?: true

Size: 383 Bytes

Versions: 13

Compression:

Stored size: 383 Bytes

Contents

difficulty 2
description "Someone has put a password inside the file `config.rb` find out who it was."

setup do
  init_from_level
end

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

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

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
mygithug-0.5.1 levels/blame.rb
githug-0.5.0 levels/blame.rb
githug-0.4.8 levels/blame.rb
githug-0.4.7 levels/blame.rb
githug-0.4.6 levels/blame.rb
githug-0.4.5 levels/blame.rb
githug-0.4.4 levels/blame.rb
githug-0.4.3 levels/blame.rb
githug-0.4.2 levels/blame.rb
githug-0.4.1 levels/blame.rb
githug-0.4.0 levels/blame.rb
githug-0.3.5 levels/blame.rb
githug-0.3.4 levels/blame.rb