README.md in array_include_methods-1.0.1 vs README.md in array_include_methods-1.0.2
- old
+ new
@@ -1,6 +1,6 @@
-# ArrayIncludeMethods 1.0.1 - Ruby Refinement
+# ArrayIncludeMethods 1.0.2 - Ruby Refinement
[![Gem Version](https://badge.fury.io/rb/array_include_methods.svg)](http://badge.fury.io/rb/array_include_methods)
`Array#include_all?` & `Array#include_any?` methods missing from basic Ruby `Array` API.
## Setup
@@ -8,11 +8,11 @@
### With Bundler:
Include the following in Gemfile:
```ruby
-gem 'array_include_methods', '~> 1.0.1'
+gem 'array_include_methods', '~> 1.0.2'
```
Run:
```
@@ -22,11 +22,11 @@
### Without Bundler:
Run:
```
-gem install array_include_methods -v1.0.1
+gem install array_include_methods -v1.0.2
```
## Usage
Add the following line to your application if you are not requiring all gems via Bundler (e.g. `Bundler.require(:default)`):
@@ -62,9 +62,13 @@
[1, 2, 3, 4].include_any?([]) # returns true
[1, 2, 3, 4].include_any?(nil) # returns false
```
## Change Log
+
+### 1.0.2
+
+- Handled case of two arrays with elements of unsortable object types (e.g. Hash)
### 1.0.1
- Handled case of two arrays with different ordering of common elements