From 5af39f06ba47e14ec9e6a999e6c1e5bc1fdbacf7 Mon Sep 17 00:00:00 2001 From: Abhi Yerra Date: Mon, 18 Aug 2014 13:48:56 -0700 Subject: [PATCH] Moved license to LICENSE.md and reformatted markdown. Closes #1 --- LICENSE.md | 21 +++++++++++++++++++++ README.md | 35 +++++++---------------------------- 2 files changed, 28 insertions(+), 28 deletions(-) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..7830f9b --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2014 Lookout, Inc. + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/README.md b/README.md index 62c1051..c0e1f63 100644 --- a/README.md +++ b/README.md @@ -2,13 +2,16 @@ A Ruby gem implementing a Kafka Publisher and Consumer -This library wraps the [librdkafka library](https://github.com/edenhill/librdkafka) which is implemented in C. -This library must be installed before we can use the Hermann gem. +This library wraps the +[librdkafka library](https://github.com/edenhill/librdkafka) which is +implemented in C. This library must be installed before we can use +the Hermann gem. ### Usage -Usage is modelled on the kafka-rb gem -(https://github.com/acrosa/kafka-rb) and is fairly straightforward. +Usage is modelled on the +[kafka-rb gem](https://github.com/acrosa/kafka-rb) and is fairly +straightforward. - Kafka 0.8 is supported. - Ruby 1.8.7 and Ruby 2.1.1 have been tested, but JRuby and versions @@ -53,27 +56,3 @@ yet coordinate partition (re)assigment within consumer groups. ## Questions? Stan Campbell can be reached at stan.campbell3 at( @ ) gmail.com - -## License - -The MIT License (MIT) - -Copyright (c) 2014 Lookout, Inc. - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE.