the_array_comparator 0.3.1 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +3 -1
- data/lib/the_array_comparator/version.rb +1 -1
- data/the_array_comparator.gemspec +2 -2
- metadata +4 -4
data/README.md
CHANGED
@@ -3,7 +3,9 @@
|
|
3
3
|
[![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/maxmeyer/the_array_comparator)
|
4
4
|
[![Build Status](https://travis-ci.org/maxmeyer/the_array_comparator.png?branch=master)](https://travis-ci.org/maxmeyer/the_array_comparator)
|
5
5
|
|
6
|
-
Can be used to compare to arrays with a consistent api.
|
6
|
+
Can be used to compare to arrays with a consistent api. It also supports
|
7
|
+
caching of previous comparism runs to reduce the amount of time for each
|
8
|
+
subsequent run - if no further check was added.
|
7
9
|
|
8
10
|
## Installation
|
9
11
|
|
@@ -10,12 +10,12 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.email = ["dev@fedux.org"]
|
11
11
|
gem.description = %q{you need to compare arrays? then this gem is very suitable for you.}
|
12
12
|
gem.summary = %q{you need to compare arrays? then this gem is very suitable for you.}
|
13
|
-
gem.homepage = "https://www.github.com/
|
13
|
+
gem.homepage = "https://www.github.com/maxmeyer/the_array_comparator"
|
14
14
|
|
15
15
|
gem.files = `git ls-files`.split($/)
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
18
|
gem.require_paths = ["lib"]
|
19
19
|
|
20
|
-
gem.add_runtime_dependency '
|
20
|
+
gem.add_runtime_dependency 'activesupport'
|
21
21
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: the_array_comparator
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,10 +9,10 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-
|
12
|
+
date: 2013-04-12 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: activesupport
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
@@ -97,7 +97,7 @@ files:
|
|
97
97
|
- spec/strategy_dispatcher/strategy_dispatcher_spec.rb
|
98
98
|
- spec/testing_helper/testing_helper_spec.rb
|
99
99
|
- the_array_comparator.gemspec
|
100
|
-
homepage: https://www.github.com/
|
100
|
+
homepage: https://www.github.com/maxmeyer/the_array_comparator
|
101
101
|
licenses: []
|
102
102
|
post_install_message:
|
103
103
|
rdoc_options: []
|