Sha256: 56f32115186568b0641c18ac42a8eda71639ea5a31edc4a37d5817e1bdff4563

Contents?: true

Size: 324 Bytes

Versions: 1

Compression:

Stored size: 324 Bytes

Contents

difficulty 1
description "There is a file in your folder called README, you should add it to your staging area"

setup do
  `git init`
  `touch README`
end

solution do
  repo = Grit::Repo.new(".")
  return false unless repo.status.files.keys == ["README"]
  return false if repo.status.files["README"].untracked
  true
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gitscrub-0.0.5 levels/add.rb