rspec-pending_for 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +8 -0
- data/README.md +5 -2
- data/lib/rspec/pending_for/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1673865e6df6f63bd5f87ad1320d7cb583f8979a
|
4
|
+
data.tar.gz: 1a7739575a48745000e30cc957ba6bf702c1cdaf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ca97bfd5e50e882a2138e6f4df590cd53ea08e63859d4d45b8206d3dd4cc0a2b388f4504fe191cd89224a251cfa6c8b4b35bc1494b07195bda5bebd35b61180
|
7
|
+
data.tar.gz: 4e718aef20f07a33454725ca59799a0aecbea5a3288182837d970daabf03ceb2ee5699f45c84e217cbd142387a441424f974201db9f78c23c9bccbaf5a05f33e
|
data/.travis.yml
CHANGED
data/README.md
CHANGED
@@ -5,21 +5,22 @@ Easiest to just show you:
|
|
5
5
|
```ruby
|
6
6
|
it("blah is blah") do
|
7
7
|
pending_for(engine: "ruby", version: "2.1.5")
|
8
|
+
pending_for(engine: "jruby", version: "2.2.2")
|
8
9
|
expect("blah").to eq "blah"
|
9
10
|
end
|
10
11
|
```
|
11
12
|
|
13
|
+
Requires Ruby 1.9+ (any engine)
|
14
|
+
|
12
15
|
| Project | Rspec::PendingFor |
|
13
16
|
|------------------------ | ------------------ |
|
14
17
|
| gem name | rspec-pending_for |
|
15
18
|
| license | MIT |
|
16
|
-
| moldiness | [![Maintainer Status](http://stillmaintained.com/pboling/rspec-pending_for.png)](http://stillmaintained.com/pboling/rspec-pending_for) |
|
17
19
|
| version | [![Gem Version](https://badge.fury.io/rb/rspec-pending_for.png)](http://badge.fury.io/rb/rspec-pending_for) |
|
18
20
|
| dependencies | [![Dependency Status](https://gemnasium.com/pboling/rspec-pending_for.png)](https://gemnasium.com/pboling/rspec-pending_for) |
|
19
21
|
| code quality | [![Code Climate](https://codeclimate.com/github/pboling/rspec-pending_for.png)](https://codeclimate.com/github/pboling/rspec-pending_for) |
|
20
22
|
| inline documenation | [![Inline docs](http://inch-ci.org/github/pboling/rspec-pending_for.png)](http://inch-ci.org/github/pboling/rspec-pending_for) |
|
21
23
|
| continuous integration | [![Build Status](https://secure.travis-ci.org/pboling/rspec-pending_for.png?branch=master)](https://travis-ci.org/pboling/rspec-pending_for) |
|
22
|
-
| test coverage | [![Coverage Status](https://coveralls.io/repos/pboling/rspec-pending_for/badge.png)](https://coveralls.io/r/pboling/rspec-pending_for) |
|
23
24
|
| homepage | [https://github.com/pboling/rspec-pending_for][homepage] |
|
24
25
|
| documentation | [http://rdoc.info/github/pboling/rspec-pending_for/frames][documentation] |
|
25
26
|
| author | [Peter Boling](https://coderbits.com/pboling) |
|
@@ -43,6 +44,8 @@ Or install it yourself as:
|
|
43
44
|
|
44
45
|
## Usage
|
45
46
|
|
47
|
+
The gem auto-configures itself for use in your Rspec suite. Just use it!
|
48
|
+
|
46
49
|
To mark a spec pending for a specific ruby engine, and/or versions:
|
47
50
|
|
48
51
|
```ruby
|