├── .gitignore ├── .gitmodules ├── .travis.yml ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── Guanaco.podspec ├── Guanaco.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Guanaco-OSX.xcscheme │ └── Guanaco-iOS.xcscheme ├── Guanaco.xcworkspace └── contents.xcworkspacedata ├── Guanaco ├── BeAnError.swift ├── Guanaco.h ├── HaveFailed.swift ├── HaveSucceeded.swift ├── Info.plist └── MatcherClosure.swift ├── GuanacoTests ├── AssertionMessageRecorder.swift ├── HaveFailedSpec.swift ├── HaveSucceededSpec.swift └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Guanaco.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco.podspec -------------------------------------------------------------------------------- /Guanaco.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Guanaco.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Guanaco.xcodeproj/xcshareddata/xcschemes/Guanaco-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco.xcodeproj/xcshareddata/xcschemes/Guanaco-OSX.xcscheme -------------------------------------------------------------------------------- /Guanaco.xcodeproj/xcshareddata/xcschemes/Guanaco-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco.xcodeproj/xcshareddata/xcschemes/Guanaco-iOS.xcscheme -------------------------------------------------------------------------------- /Guanaco.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Guanaco/BeAnError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco/BeAnError.swift -------------------------------------------------------------------------------- /Guanaco/Guanaco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco/Guanaco.h -------------------------------------------------------------------------------- /Guanaco/HaveFailed.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco/HaveFailed.swift -------------------------------------------------------------------------------- /Guanaco/HaveSucceeded.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco/HaveSucceeded.swift -------------------------------------------------------------------------------- /Guanaco/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco/Info.plist -------------------------------------------------------------------------------- /Guanaco/MatcherClosure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/Guanaco/MatcherClosure.swift -------------------------------------------------------------------------------- /GuanacoTests/AssertionMessageRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/GuanacoTests/AssertionMessageRecorder.swift -------------------------------------------------------------------------------- /GuanacoTests/HaveFailedSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/GuanacoTests/HaveFailedSpec.swift -------------------------------------------------------------------------------- /GuanacoTests/HaveSucceededSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/GuanacoTests/HaveSucceededSpec.swift -------------------------------------------------------------------------------- /GuanacoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/GuanacoTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modocache/Guanaco/HEAD/README.md --------------------------------------------------------------------------------