From 49bbc2107243e17131b8b233c01d17b6b0afefcd Mon Sep 17 00:00:00 2001 From: Bryan Ricker Date: Fri, 10 Nov 2023 10:42:00 -0800 Subject: [PATCH] Bump to 2.0.1 --- CHANGELOG.md | 5 +++++ README.md | 4 +--- to_bool.gemspec | 5 +++-- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dfe7db..31a35da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,9 @@ # Changelog +## 2.0.1 + +- Added LICENSE + ## 2.0.0 + - Added "y" as truthy value for String (Gustav Bertram) diff --git a/README.md b/README.md index 64f0cf7..b0475aa 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,10 @@ Natural coercion into boolean (true / false). Useful for API interaction. - ## Installation `gem "to_bool"` - ## Usage Call `to_bool` or `to_boolean` on any object. It will *usually* return false, except: @@ -25,6 +23,6 @@ Yes! ### Running Tests -``` +```sh bundle exec rspec ``` diff --git a/to_bool.gemspec b/to_bool.gemspec index 412d7cb..b35f874 100644 --- a/to_bool.gemspec +++ b/to_bool.gemspec @@ -4,12 +4,13 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |gem| gem.name = "to_bool" - gem.version = "2.0.0" + gem.version = "2.0.1" gem.authors = ["Bryan Ricker"] - gem.email = ["bryancricker@gmail.com"] + gem.email = ["rubygems@bryanricker.com"] gem.description = %q{Super-simple gem that extends some Ruby classes with a "to_bool" method, which converts any object naturally into a boolean.} gem.summary = %q{Convert any object naturally into a boolean} gem.homepage = "http://github.com/bricker/to_bool" + gem.license = "MIT" gem.files = `git ls-files`.split($/) gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }