diff --git a/README.md b/README.md index bbfe9f1..6bbc558 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,9 @@ Active Support's version also considers Unicode spaces. For example, `"\u2000\u ### Change log: +1.0.1: + - Minor, avoid warnings if redefining blank? + 1.0.0: - Adds Ruby 2.2 support ([@tjschuck](https://github.com/tjschuck) — [#9](https://github.com/SamSaffron/fast_blank/pull/9)) diff --git a/Rakefile b/Rakefile index 27fdb8d..2f0ed7a 100644 --- a/Rakefile +++ b/Rakefile @@ -1,4 +1,5 @@ require 'bundler' +require 'bundler/gem_tasks' Bundler.setup require 'rake' diff --git a/fast_blank.gemspec b/fast_blank.gemspec index a685e31..684d6b0 100644 --- a/fast_blank.gemspec +++ b/fast_blank.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.name = 'fast_blank' - s.version = '1.0.0' - s.date = '2015-08-03' + s.version = '1.0.1' + s.date = '2021-08-17' s.summary = 'Fast String blank? implementation' s.description = 'Provides a C-optimized method for determining if a string is blank'