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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b863b51de5b32968f0387d5596bb5e4064328f98
4
- data.tar.gz: d0c4cc6393fc9760b896a0115f7866b8868592c9
3
+ metadata.gz: 1673865e6df6f63bd5f87ad1320d7cb583f8979a
4
+ data.tar.gz: 1a7739575a48745000e30cc957ba6bf702c1cdaf
5
5
  SHA512:
6
- metadata.gz: c5c03ccee1d1b08d706e8a2da9994e26a190b5f5e9472f2aff29e067c58821f9d1465df49588d394443749d85115ee4104577303a9dada9e04d311c62eca4a9a
7
- data.tar.gz: 7016c08fd75acba013cdeded6ce9aa602a5ef242337c85749caec7231fb3724b0693ed5b11251e361ac559fe48a5fb4e103c9ee46225e0995552ed683027714a
6
+ metadata.gz: 0ca97bfd5e50e882a2138e6f4df590cd53ea08e63859d4d45b8206d3dd4cc0a2b388f4504fe191cd89224a251cfa6c8b4b35bc1494b07195bda5bebd35b61180
7
+ data.tar.gz: 4e718aef20f07a33454725ca59799a0aecbea5a3288182837d970daabf03ceb2ee5699f45c84e217cbd142387a441424f974201db9f78c23c9bccbaf5a05f33e
@@ -1,4 +1,12 @@
1
1
  language: ruby
2
2
  rvm:
3
+ - 1.9.2
4
+ - 1.9.3
5
+ - 2.0.0
6
+ - 2.1.7
3
7
  - 2.2.3
8
+ - rbx
9
+ - jruby
10
+ - jruby-9.0.1.0
11
+ - jruby-head
4
12
  before_install: gem install bundler -v 1.10.6
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
@@ -1,5 +1,5 @@
1
1
  module Rspec
2
2
  module PendingFor
3
- VERSION = "0.1.2"
3
+ VERSION = "0.1.3"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-pending_for
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Peter Boling