Finalize the name of the package as vulcanizer

This commit is contained in:
Nicholas Canzoneri 2018-08-21 16:34:03 -04:00
Родитель e56ea54de5
Коммит 7f37a6084c
9 изменённых файлов: 10 добавлений и 10 удалений

Просмотреть файл

@ -1,7 +1,7 @@
## Contributing
[fork]: https://github.com/github/vulcan-go-opensource-lib/fork
[pr]: https://github.com/github/vulcan-go-opensource-lib/compare
[fork]: https://github.com/github/vulcanizer/fork
[pr]: https://github.com/github/vulcanizer/compare
[style]: https://github.com/styleguide/ruby
[code-of-conduct]: CODE_OF_CONDUCT.md

Просмотреть файл

@ -1,4 +1,4 @@
# vulcan-go-opensource-lib
# vulcanizer
GitHub's ops focused Elasticsearch library
This project is a golang library for interacting with an Elasticsearch cluster. It's goal is to provide a high level API to help with common tasks that are associated with operating an Elasticsearch cluster such as querying health status of the cluster, migrating data off of nodes, updating cluster settings, etc.
@ -11,7 +11,7 @@ To be determined
### Name
To be determined.
[Vulcanization](https://en.wikipedia.org/wiki/Vulcanization) is the process of making rubber more elastic, so vulcanizer is the library that makes Elasticsearch easier to work with!
### Project status
@ -24,9 +24,9 @@ This repository is [open to contributions](CONTRIBUTING.md). Please also see [co
To get up and running, install the project into your $GOPATH and run the set up scripts.
```
go get github.com/github/vulcan-go-opensource-lib
go get github.com/github/vulcanizer
cd $GOPATH/src/github.com/github/vulcan-go-opensource-lib
cd $GOPATH/src/github.com/github/vulcanizer
./script/bootstrap
./script/test
@ -36,7 +36,7 @@ And the test suite should execute correctly.
### License
This project is released under the [MIT LICENSE](LICENSE). Please note it includes 3rd party dependencies release under their own licenses; these are found under [vendor](https://github.com/github/vulcan-go-opensource-lib/tree/master/vendor).
This project is released under the [MIT LICENSE](LICENSE). Please note it includes 3rd party dependencies release under their own licenses; these are found under [vendor](https://github.com/github/vulcanizer/tree/master/vendor).
### Authors

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -9,7 +9,7 @@ if [ "$(uname -s)" = "Darwin" ]; then
)
if [[ ! -x "$(which go)" ]]; then
echo >&2 "vulcan-go-opensource-lib requires an installation of Go to build."
echo >&2 "vulcanizer requires an installation of Go to build."
exit 1
fi
fi

Просмотреть файл

@ -1,3 +1,3 @@
#!/bin/bash
go install -ldflags="-X main.BuildVersion=$(script/revision)" github.com/github/vulcan-go-opensource-lib/...
go install -ldflags="-X main.BuildVersion=$(script/revision)" github.com/github/vulcanizer/...

Просмотреть файл

@ -2,4 +2,4 @@
./script/build
go test -v github.com/github/vulcan-go-opensource-lib/...
go test -v github.com/github/vulcanizer/...