summaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2017-07-11Fix build, license, coverage, and godoc linksAndrew Keating
2016-10-29Remove duplicate godoc badge.Dave Collins
2016-10-29Update badges in README.md to SVG.Dave Collins
Also, while here: - Add a license badge - Add godoc badge alongside other badges at the very top - Add link to the copyfree website for the license
2016-10-29Update doc.go/README.md with new config options.Dave Collins
2016-09-07Deprecate "disableunsafe" tag in favor of "safe".Dave Collins
This adds a new build tag named "safe" which serves the exact same purpose as the current "disableunsafe" tag. This is being done, as recommended by @shurcooL, since it is emerging as the standard way to do it in several high profile packages, it mirrors the "unsafe" package nicely, it is shorter, and users generally seem to prefer it. However, to avoid breaking existing infrastructure, the disableunsafe tag is still available and simply is being deprecated.
2016-09-02Link missing blog post to web archive (fixes #46 and #41)anatoly techtonik
2015-06-19Add support for limited mode without unsafe pkg.Dave Collins
This commit adds support for compiling spew without the unsafe package. When compiled without the unsafe package, some of the more advanced features such as invoking stringers on pointers from non-pointer variables and unexported struct fields are not available. By default, spew will be compiled in the limited mode for Google App Engine since the unsafe package is not available there. Additionally, spew can be compiled without the unsafe package manually by specifying the "disableunsafe" build tag. Finally, a new package-level constant named "UnsafeDisabled" has been exposed which can be used to programmatically determine if spew was compiled with access to the unsafe package.
2015-05-25Provide an example on how to debug a web app.Jason Buberel
Update README.md Removing extra line.
2015-05-17Removed spurious "spew".Brian Dorsey
2015-05-03Add import line to README.md quickstartBrian Dorsey
2015-04-10Enable methods to sort map keys and spew itself as last resortTim Hockin
If enabled by flags, try to use methods to stringify map keys and sort on that. If we can't use primitive sorting and we can't use methods, we can still fall back on spew itself. If SpewKeys is enabled, use Sprintf("%#v") to generate a string and sort by that.
2015-02-23Add -u to the README installation instructions.Dave Collins
This will allow the command to update the package if an old one happens to be present while still fetching it if it's missing. Suggested by @shurcooL in #28.
2014-03-27Point test coverage badge at master branch.Dave Collins
2014-03-27Add coveralls.io test coverage badge.Dave Collins
2013-11-16Make build status badge only apply to master branch.Dave Collins
2013-11-16Add TravisCI build status badge to README.md.Dave Collins
2013-11-16Add godoc reference badge to README.md.Dave Collins
2013-11-16Update README and doc.go with new SortKeys option.Dave Collins
2013-03-11Update README.mdDave Collins
2013-03-08Update docs for new byte array and slice behavior.Dave Collins
2013-03-08Update README.mdDave Collins
Include byte slice hexdump output in sample dump output.
2013-03-03Cleanup documentation on new ContinueOnMethod code.Dave Collins
This commit expands on TShadwell's work attached to issue #8. It rounds out the documentation for the new option.
2013-02-02Update README.mdDave Collins
2013-01-20Update README.mdDave Collins
2013-01-19Update README.mdDave Collins
2013-01-17Update README.mdDave Collins
2013-01-10Update README.mdDave Collins
2013-01-10Update README.mdDave Collins
2013-01-08Update README.mdDave Collins
2013-01-08Update README.mdDave Collins
2013-01-08Initial commitDave Collins