├── .gitignore ├── Godeps ├── Godeps.json └── Readme ├── LICENSE ├── README.md ├── default_languages.json ├── example.go ├── langdet ├── analyzing.go ├── analyzing_test.go ├── detection.go ├── detection_internal_test.go ├── detection_test.go ├── internal │ └── default_languages.go ├── langdetdef │ └── languages.go ├── models.go └── unicode_detector.go ├── makefile ├── vendor └── github.com │ ├── gopherjs │ └── gopherjs │ │ ├── LICENSE │ │ └── js │ │ └── js.go │ ├── jtolds │ └── gls │ │ ├── LICENSE │ │ ├── README.md │ │ ├── context.go │ │ ├── gen_sym.go │ │ ├── gid.go │ │ ├── id_pool.go │ │ ├── stack_tags.go │ │ ├── stack_tags_js.go │ │ └── stack_tags_main.go │ └── smartystreets │ ├── assertions │ ├── .gitignore │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── LICENSE.md │ ├── Makefile │ ├── README.md │ ├── collections.go │ ├── doc.go │ ├── equal_method.go │ ├── equality.go │ ├── equality_diff.go │ ├── filter.go │ ├── go.mod │ ├── internal │ │ ├── go-diff │ │ │ └── diffmatchpatch │ │ │ │ ├── diff.go │ │ │ │ ├── diffmatchpatch.go │ │ │ │ ├── match.go │ │ │ │ ├── mathutil.go │ │ │ │ ├── operation_string.go │ │ │ │ ├── patch.go │ │ │ │ └── stringutil.go │ │ ├── go-render │ │ │ └── render │ │ │ │ ├── render.go │ │ │ │ └── render_time.go │ │ └── oglematchers │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── any_of.go │ │ │ ├── contains.go │ │ │ ├── deep_equals.go │ │ │ ├── equals.go │ │ │ ├── greater_or_equal.go │ │ │ ├── greater_than.go │ │ │ ├── less_or_equal.go │ │ │ ├── less_than.go │ │ │ ├── matcher.go │ │ │ ├── not.go │ │ │ └── transform_description.go │ ├── messages.go │ ├── panic.go │ ├── quantity.go │ ├── serializer.go │ ├── strings.go │ ├── time.go │ └── type.go │ └── goconvey │ ├── LICENSE.md │ └── convey │ ├── assertions.go │ ├── context.go │ ├── convey.goconvey │ ├── discovery.go │ ├── doc.go │ ├── gotest │ └── utils.go │ ├── init.go │ ├── nilReporter.go │ └── reporting │ ├── console.go │ ├── doc.go │ ├── dot.go │ ├── gotest.go │ ├── init.go │ ├── json.go │ ├── printer.go │ ├── problems.go │ ├── reporter.go │ ├── reporting.goconvey │ ├── reports.go │ ├── statistics.go │ └── story.go └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- 1 | samples 2 | */goconvey 3 | .idea -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/README.md -------------------------------------------------------------------------------- /default_languages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/default_languages.json -------------------------------------------------------------------------------- /example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/example.go -------------------------------------------------------------------------------- /langdet/analyzing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/analyzing.go -------------------------------------------------------------------------------- /langdet/analyzing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/analyzing_test.go -------------------------------------------------------------------------------- /langdet/detection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/detection.go -------------------------------------------------------------------------------- /langdet/detection_internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/detection_internal_test.go -------------------------------------------------------------------------------- /langdet/detection_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/detection_test.go -------------------------------------------------------------------------------- /langdet/internal/default_languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/internal/default_languages.go -------------------------------------------------------------------------------- /langdet/langdetdef/languages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/langdetdef/languages.go -------------------------------------------------------------------------------- /langdet/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/models.go -------------------------------------------------------------------------------- /langdet/unicode_detector.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/langdet/unicode_detector.go -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/makefile -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/gopherjs/gopherjs/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/gopherjs/gopherjs/js/js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/gopherjs/gopherjs/js/js.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/README.md -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/context.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gen_sym.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/gen_sym.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/gid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/gid.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/id_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/id_pool.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/stack_tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/stack_tags.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/stack_tags_js.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/stack_tags_js.go -------------------------------------------------------------------------------- /vendor/github.com/jtolds/gls/stack_tags_main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/jtolds/gls/stack_tags_main.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.gitignore: -------------------------------------------------------------------------------- 1 | /.idea 2 | /coverage.* 3 | .DS_Store 4 | *.iml 5 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/CONTRIBUTING.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/Makefile -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/README.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/collections.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/collections.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/equal_method.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/equal_method.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/equality.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/equality.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/equality_diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/equality_diff.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/filter.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/smartystreets/assertions 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/diff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/diff.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/diffmatchpatch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/diffmatchpatch.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/match.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/mathutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/mathutil.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/operation_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/operation_string.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/patch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/patch.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/stringutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-diff/diffmatchpatch/stringutil.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-render/render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-render/render/render.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/go-render/render/render_time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/go-render/render/render_time.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/.gitignore -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/.travis.yml -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/README.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/any_of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/any_of.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/contains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/contains.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/deep_equals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/deep_equals.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/equals.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/equals.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_or_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_or_equal.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_than.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/greater_than.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/less_or_equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/less_or_equal.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/less_than.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/less_than.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/matcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/matcher.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/not.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/not.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/internal/oglematchers/transform_description.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/internal/oglematchers/transform_description.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/messages.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/panic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/panic.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/quantity.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/quantity.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/serializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/serializer.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/strings.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/time.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/time.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/assertions/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/assertions/type.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/LICENSE.md -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/assertions.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/context.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/convey.goconvey: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/convey.goconvey -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/discovery.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/discovery.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/gotest/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/gotest/utils.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/init.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/nilReporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/nilReporter.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/console.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/doc.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/dot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/dot.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/gotest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/gotest.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/init.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/json.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/printer.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/problems.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/problems.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/reporter.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reporting.goconvey: -------------------------------------------------------------------------------- 1 | #ignore 2 | -timeout=1s 3 | -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/reports.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/statistics.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/statistics.go -------------------------------------------------------------------------------- /vendor/github.com/smartystreets/goconvey/convey/reporting/story.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/vendor/github.com/smartystreets/goconvey/convey/reporting/story.go -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chrisport/go-lang-detector/HEAD/wercker.yml --------------------------------------------------------------------------------