Merge pull request #2419 from evgenyneu/master

Treat Carthage path as vendored
This commit is contained in:
Arfon Smith
2015-05-28 13:33:47 -05:00
2 changed files with 7 additions and 1 deletions

View File

@@ -163,6 +163,9 @@
## Obj-C ##
# Carthage
- ^Carthage/
# Cocoapods
- ^Pods/

View File

@@ -422,6 +422,9 @@ class TestBlob < Minitest::Test
# Normalize
assert sample_blob("some/asset/path/normalize.css").vendored?
# Carthage
assert sample_blob('Carthage/blah').vendored?
# Cocoapods
assert sample_blob('Pods/blah').vendored?
@@ -473,7 +476,7 @@ class TestBlob < Minitest::Test
# Sphinx docs
assert sample_blob("docs/_build/asset.doc").vendored?
assert sample_blob("docs/theme/file.css").vendored?
# Vagrant
assert sample_blob("puphpet/file.pp").vendored?
end