README.md in array_include_methods-1.0.3 vs README.md in array_include_methods-1.0.4

- old
+ new

@@ -1,6 +1,6 @@ -# ArrayIncludeMethods 1.0.3 - Ruby Refinement +# ArrayIncludeMethods 1.0.4 - Ruby Refinement [![Gem Version](https://badge.fury.io/rb/array_include_methods.svg)](http://badge.fury.io/rb/array_include_methods) [![Build Status](https://travis-ci.com/AndyObtiva/array_include_methods.svg?branch=master)](https://travis-ci.com/AndyObtiva/array_include_methods) [![Coverage Status](https://coveralls.io/repos/github/AndyObtiva/array_include_methods/badge.svg?branch=master)](https://coveralls.io/github/AndyObtiva/array_include_methods?branch=master) `Array#include_all?` & `Array#include_any?` methods missing from basic Ruby `Array` API. @@ -10,11 +10,11 @@ ### With Bundler: Include the following in Gemfile: ```ruby -gem 'array_include_methods', '~> 1.0.3' +gem 'array_include_methods', '~> 1.0.4' ``` Run: ``` @@ -24,11 +24,11 @@ ### Without Bundler: Run: ``` -gem install array_include_methods -v1.0.3 +gem install array_include_methods -v1.0.4 ``` ## Usage Add the following line to your application if you are not requiring all gems via Bundler (e.g. `Bundler.require(:default)`): @@ -49,19 +49,23 @@ ### `Array#include_all?(other_array)` ```ruby [1, 2, 3, 4].include_all?([2, 4]) # returns true +[1, 2, 3, 4].include_all?(2, 4) # returns true [1, 2, 3, 4].include_all?([2, 4, 5]) # returns false +[1, 2, 3, 4].include_all?(2, 4, 5) # returns false [1, 2, 3, 4].include_all?([]) # returns true [1, 2, 3, 4].include_all?(nil) # returns false ``` ### `Array#include_any?(other_array)` ```ruby [1, 2, 3, 4].include_any?([2, 4, 5]) # returns true +[1, 2, 3, 4].include_any?(2, 4, 5) # returns true [1, 2, 3, 4].include_any?([6, 7]) # returns false +[1, 2, 3, 4].include_any?(6, 7) # returns false [1, 2, 3, 4].include_any?([]) # returns true [1, 2, 3, 4].include_any?(nil) # returns false ``` ## Opal Compatibility