README.md in ob64-0.1.0 vs README.md in ob64-0.2.0

- old
+ new

@@ -1,7 +1,11 @@ # Ob64 gem +[![Gem Version](https://badge.fury.io/rb/ob64.svg)](http://rubygems.org/gems/ob64) +[![Build Status](https://github.com/jcmfernandes/ob64/workflows/Test/badge.svg?branch=master&event=push)](https://github.com/jcmfernandes/ob64/actions?query=workflow:Test) +[![Yard Docs](https://img.shields.io/badge/yard-docs-blue.svg)](http://www.rubydoc.info/gems/ob64/0.1.0) + A *fast* Base64 encoder and decoder as a Ruby gem. How fast? Try it yourself, execute: $ rake benchmark @@ -37,11 +41,10 @@ ```ruby require "ob64" bin1 = "This is data!" string = Ob64.encode(bin1) - # string = "VGhpcyBpcyBkYXRhIQ==" bin2 = Ob64.decode(string) puts "Same? #{bin1 == bin2}" # "Same? true" @@ -80,10 +83,39 @@ * Make the OpenMP threshold configurable (and enable OpenMP acceleration) * Windows support ## License -The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT). +Released under the MIT License. See [{file:LICENSE}](LICENSE). + +Copyright (c) 2021, João Fernandes + +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. + +### libbase64 + +Released under the BSD 2-clause License. See [LICENSE](https://github.com/jcmfernandes/base64-cmake/blob/feature/cmake/LICENSE). + +Copyright (c) 2005-2007, Nick Galbreath +Copyright (c) 2013-2019, Alfred Klomp +Copyright (c) 2015-2017, Wojciech Mula +Copyright (c) 2016-2017, Matthieu Darbois ## Code of Conduct Everyone interacting in the Ob64 project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/jcmfernandes/ob64/blob/master/CODE_OF_CONDUCT.md).