Sha256: faa993678164cf159fbd47fee9851df1965ed244df60064628280a176fe4d102

Contents?: true

Size: 431 Bytes

Versions: 12

Compression:

Stored size: 431 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

  solved = false

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

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

Version data entries

12 entries across 12 versions & 2 rubygems

Version Path
githug-0.1.7 levels/blame.rb
githug-0.1.6 levels/blame.rb
githug-0.1.5 levels/blame.rb
githug-0.1.4 levels/blame.rb
githug-0.1.3 levels/blame.rb
githug-0.1.2 levels/blame.rb
githug-0.1.1 levels/blame.rb
githug-0.1.0 levels/blame.rb
githug-0.0.10 levels/blame.rb
githug-0.0.9 levels/blame.rb
gitscrub-0.0.8 levels/blame.rb
gitscrub-0.0.7 levels/blame.rb