rspec-matcher-num-times 0.0.1 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NjUyZTMwOTAyOTY2NTc3MGU4MmNiNTQ4NmU2MWQ3MWJkNjc3YmJkYg==
4
+ ZTU3MjYzODc0YjhkNmUyMzNkM2I3NGZkMWNlYzM2M2U4OGNkYzIyZQ==
5
5
  data.tar.gz: !binary |-
6
- NDQ0N2M4ZDVhNTAwN2IwZTc3OWM3MDU5NmY2ZDYwODljNzg3MDFmZA==
6
+ YTkyZTk2YWEwMjg0YTUyMmJhZjg4M2E5ZmY0NmFlYzgxZTkwODY2OA==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- YWExOWQ3ZTgzM2MwZDY4ZDYxODRiNjlhMTg3YmQ5ZDk2MTA1NzdiNzYwNGI0
10
- NzM4MmZjMDU0YmJkYjhmYzhkMjgzN2UxZDc0Y2EzMzdjZjg5OGI4MThjZjNm
11
- NjVmMzY2YWM3YzllMGJiMDc4NGM4NDc5ODE0NWI5ZjhhZDUyYTE=
9
+ OWZiNmQ1MjQ3ZGQ1ZmRiNzFkOTlmMGQ0Yjk0ZmJiNzFlNGYyYTViMjBjNDQz
10
+ ODBmOGVmYjhjYTRhNDQ2NzQ4ZWQ1Mjc2OTE5MGIzMzQxMDI4ZWM2ZTg0NzIz
11
+ OGFkN2RjNGZlZjBlNmRhNjNlYzYwNjYwODcyYWM2ZjRmZjNmYzM=
12
12
  data.tar.gz: !binary |-
13
- Yjg2ODAxZmY5NTlhNTA5MDYxYjkzNDE1MTIwZWU1NGRmNmE3YTI2Zjc5Mjlj
14
- NDBmOGVhYmNhZmE5YTU4N2ViYTA0ZTJiNTNlZjcyNTFlMDEwMjk2ODFhMTll
15
- MjMxMDA0ZGU5ZThkZmQ0NDE3MDQ3YjEwODAxZmUxY2EyYTIyNzA=
13
+ OGIzMjA4MWU3ZDQ1MWM5M2ViNDRmZGUwYTRlMzNiZDA0ZTZiZDc0YzQ2NGY5
14
+ NzhhYTljYzJlMGU3MzA1OTI3MWUyMDcxZjBjZWMyZDI4ODlmOGFlNGU1MGZj
15
+ M2FmZjA1YTU5NTVhNDQ0MzMxMTQwZjNiNzE2M2YxYzY5M2EyNmU=
data/README.md CHANGED
@@ -6,12 +6,14 @@
6
6
  [![Gem Version](https://img.shields.io/gem/v/rspec-matcher-num-times.svg)](https://rubygems.org/gems/rspec-matcher-num-times)
7
7
  [![Total Downloads](https://img.shields.io/gem/dt/rspec-matcher-num-times.svg)](https://rubygems.org/gems/rspec-matcher-num-times)
8
8
  [![Github Issues](https://img.shields.io/github/issues/jantman/rspec-matcher-num-times.svg)](https://github.com/jantman/rspec-matcher-num-times/issues)
9
- [![Project Status: Abandoned - Initial development has started, but there has not yet been a stable, usable release; the project has been abandoned and the author(s) do not intend on continuing development.](http://www.repostatus.org/badges/0.1.0/abandoned.svg)](http://www.repostatus.org/#abandoned)
9
+ [![Project Status: Active - The project has reached a stable, usable state and is being actively developed.](http://www.repostatus.org/badges/0.1.0/active.svg)](http://www.repostatus.org/#active)
10
10
 
11
11
  This gem provides some rspec matchers to simplify asserting that something is included or matched N times.
12
12
 
13
13
  ## Installation
14
14
 
15
+ ### Current Gem Version (for rspec-3)
16
+
15
17
  Add this line to your application's Gemfile:
16
18
 
17
19
  gem 'rspec-matcher-num-times'
@@ -24,6 +26,16 @@ Or install it yourself as:
24
26
 
25
27
  $ gem install rspec-matcher-num-times
26
28
 
29
+ ### For rspec-2
30
+
31
+ Add this line to your application's Gemfile:
32
+
33
+ gem 'rspec-matcher-num-times', git: "https://github.com/jantman/rspec-matcher-num-times.git", branch: 'rspec2'
34
+
35
+ And then execute:
36
+
37
+ $ bundle
38
+
27
39
  ## Usage
28
40
 
29
41
  In your spec_helper, add a line like:
@@ -1,3 +1,3 @@
1
1
  module RspecMatcherNumTimes
2
- VERSION = "0.0.1"
2
+ VERSION = "0.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-matcher-num-times
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Antman