limit_detectors 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.travis.yml +2 -2
- data/README.md +11 -7
- data/lib/limit_detectors/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 22d7267330a8393ba610f0c80a49b9356aabcbc3
|
|
4
|
+
data.tar.gz: f97f4b0598e4e03d28429d0ec7f5f9b15f27b95b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a6b872ca0d813bfb44914fcedcb48366adae1d54bf426e6ebb7fe244bfd698df6a318ff3ac70660118f099e642cbbb1357b4061657d7d55724b2c1ec5fdf722
|
|
7
|
+
data.tar.gz: 2d7264762b9986909d343e81fc626b202f1fac1301dccced72b736ac63a60c70a65cea661e98321a6a753572caae8343dfa404b5ea5ed07f5db59f43d41eec04
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -2,12 +2,16 @@
|
|
|
2
2
|
|
|
3
3
|
Some methods to detect whether an Enumberable object contains a constrained number of elements that match a given condition
|
|
4
4
|
|
|
5
|
+
A second reason to create this gem is to explore various other services -- see the status list below.
|
|
6
|
+
|
|
5
7
|
## Stati
|
|
6
8
|
|
|
7
9
|
* Version: [](http://badge.fury.io/rb/limit_detectors)
|
|
8
10
|
* Travis CI: [](https://travis-ci.org/s2k/limit_detectors)
|
|
9
|
-
* Maintenance: [](http://stillmaintained.com/s2k/limit_detectors)
|
|
10
11
|
* Code Climate: [](https://codeclimate.com/github/s2k/limit_detectors)
|
|
12
|
+
* Codeship: [](https://codeship.com/projects/97926)
|
|
13
|
+
* Circle CI: [](https://circleci.com/gh/s2k/limit_detectors)
|
|
14
|
+
|
|
11
15
|
|
|
12
16
|
## Installation
|
|
13
17
|
|
|
@@ -48,12 +52,12 @@ may not be compatible with the current version.
|
|
|
48
52
|
|
|
49
53
|
This gem is tested with these (MRI) Ruby versions:
|
|
50
54
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
55
|
+
- 1.9.3
|
|
56
|
+
- 2.0
|
|
57
|
+
- 2.1
|
|
58
|
+
- 2.2.4
|
|
59
|
+
- 2.3.0
|
|
60
|
+
- jruby
|
|
57
61
|
|
|
58
62
|
as well as a current version of JRuby.
|
|
59
63
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: limit_detectors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephan Kämper
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2016-02-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -120,7 +120,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
120
|
version: '0'
|
|
121
121
|
requirements: []
|
|
122
122
|
rubyforge_project:
|
|
123
|
-
rubygems_version: 2.
|
|
123
|
+
rubygems_version: 2.5.2
|
|
124
124
|
signing_key:
|
|
125
125
|
specification_version: 4
|
|
126
126
|
summary: Detect certain conditions of elements of an Enumerable object
|