rspec-pending_for 0.1.10 → 0.1.11
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 +41 -15
- data/Appraisals +12 -6
- data/README.md +4 -4
- data/gemfiles/{jruby_1.7.27.gemfile → jruby_1.7.26.gemfile} +0 -0
- data/gemfiles/{jruby_9.1.15.0.gemfile → jruby_9.1.9.0.gemfile} +0 -0
- data/gemfiles/{ruby_2.2.9.gemfile → jruby_9.2.0.0.gemfile} +0 -0
- data/gemfiles/{ruby_2.3.6.gemfile → ruby_2.2.10.gemfile} +0 -0
- data/gemfiles/{ruby_2.4.3.gemfile → ruby_2.3.7.gemfile} +0 -0
- data/gemfiles/{ruby_2.5.0.gemfile → ruby_2.4.4.gemfile} +0 -0
- data/gemfiles/ruby_2.5.1.gemfile +15 -0
- data/lib/rspec/pending_for/version.rb +1 -1
- data/rspec-pending_for.gemspec +2 -1
- metadata +8 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b09e063aec081dddd18111a3ad7ea50831ba3c94a8ccee44eeb540cbd66a20a3
|
4
|
+
data.tar.gz: 59fc661c6f3aba299b87d1d2aa4ca912ffb8fafa2dcab4950dcc78fe2653c129
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 878314863d36fdee936b9293201d9f3e61b9150192620845367297927084f610ce5d076e44a8122edd493d6e6f8609a87ed8d99d0880a2ded2f9ca9dc4b36787
|
7
|
+
data.tar.gz: d757dd56679d61821b13355483d633c1d3f6979c4ce4aa7d94a2f0f62368d32bb98c4cfd9577e70ca39e08253f73c6eb002f5e742db8f27ddb6333a0563ec2e5
|
data/.travis.yml
CHANGED
@@ -1,8 +1,32 @@
|
|
1
|
-
|
1
|
+
env:
|
2
|
+
global:
|
3
|
+
- JRUBY_OPTS="-Xcli.debug=true --debug"
|
4
|
+
- CC_TEST_REPORTER_ID=b371af9d80b8b1f593e87d11c20137cf7573149a6296278715acd3fa48ddc280
|
5
|
+
|
6
|
+
before_script:
|
7
|
+
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
8
|
+
- chmod +x ./cc-test-reporter
|
9
|
+
- ./cc-test-reporter before-build
|
10
|
+
|
11
|
+
script:
|
12
|
+
- bundle exec rspec
|
13
|
+
|
14
|
+
after_script:
|
15
|
+
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
|
16
|
+
|
2
17
|
before_install:
|
3
|
-
|
4
|
-
|
18
|
+
- gem update --system
|
19
|
+
- gem install bundler
|
20
|
+
|
21
|
+
install:
|
22
|
+
- bundle install
|
23
|
+
|
24
|
+
bundler_args: --no-deployment --jobs 3 --retry 3
|
25
|
+
|
5
26
|
cache: bundler
|
27
|
+
|
28
|
+
language: ruby
|
29
|
+
sudo: false
|
6
30
|
matrix:
|
7
31
|
allow_failures:
|
8
32
|
- rvm: jruby-head
|
@@ -17,19 +41,21 @@ matrix:
|
|
17
41
|
gemfile: gemfiles/ruby_2.0.0_p648.gemfile
|
18
42
|
- rvm: 2.1.10
|
19
43
|
gemfile: gemfiles/ruby_2.1.10.gemfile
|
20
|
-
- rvm: 2.2.
|
21
|
-
gemfile: gemfiles/ruby_2.2.
|
22
|
-
- rvm: 2.3.
|
23
|
-
gemfile: gemfiles/ruby_2.3.
|
24
|
-
- rvm: 2.4.
|
25
|
-
gemfile: gemfiles/ruby_2.4.
|
26
|
-
- rvm: 2.5.
|
27
|
-
gemfile: gemfiles/ruby_2.5.
|
44
|
+
- rvm: 2.2.10
|
45
|
+
gemfile: gemfiles/ruby_2.2.10.gemfile
|
46
|
+
- rvm: 2.3.7
|
47
|
+
gemfile: gemfiles/ruby_2.3.7.gemfile
|
48
|
+
- rvm: 2.4.4
|
49
|
+
gemfile: gemfiles/ruby_2.4.4.gemfile
|
50
|
+
- rvm: 2.5.1
|
51
|
+
gemfile: gemfiles/ruby_2.5.1.gemfile
|
28
52
|
- rvm: ruby-head
|
29
53
|
gemfile: gemfiles/ruby_head.gemfile
|
30
|
-
- rvm: jruby-1.7.
|
31
|
-
gemfile: gemfiles/jruby_1.7.
|
32
|
-
- rvm: jruby-9.1.
|
33
|
-
gemfile: gemfiles/jruby_9.1.
|
54
|
+
- rvm: jruby-1.7.26
|
55
|
+
gemfile: gemfiles/jruby_1.7.26.gemfile
|
56
|
+
- rvm: jruby-9.1.9.0
|
57
|
+
gemfile: gemfiles/jruby_9.1.9.0.gemfile
|
58
|
+
- rvm: jruby-9.2.0.0
|
59
|
+
gemfile: gemfiles/jruby_9.2.0.0.gemfile
|
34
60
|
- rvm: jruby-head
|
35
61
|
gemfile: gemfiles/jruby_head.gemfile
|
data/Appraisals
CHANGED
@@ -1,4 +1,7 @@
|
|
1
|
-
appraise 'jruby-1.7.
|
1
|
+
appraise 'jruby-1.7.26' do
|
2
|
+
end
|
3
|
+
|
4
|
+
appraise 'ruby-1.8.7-p371' do
|
2
5
|
end
|
3
6
|
|
4
7
|
appraise 'ruby-1.9.3-p551' do
|
@@ -10,17 +13,20 @@ end
|
|
10
13
|
appraise 'ruby-2.1.10' do
|
11
14
|
end
|
12
15
|
|
13
|
-
appraise 'ruby-2.2.
|
16
|
+
appraise 'ruby-2.2.10' do
|
17
|
+
end
|
18
|
+
|
19
|
+
appraise 'jruby-9.1.9.0' do
|
14
20
|
end
|
15
21
|
|
16
|
-
appraise '
|
22
|
+
appraise 'ruby-2.3.7' do
|
17
23
|
end
|
18
24
|
|
19
|
-
appraise 'ruby-2.
|
25
|
+
appraise 'ruby-2.4.4' do
|
20
26
|
end
|
21
27
|
|
22
|
-
appraise 'ruby-2.
|
28
|
+
appraise 'ruby-2.5.1' do
|
23
29
|
end
|
24
30
|
|
25
|
-
appraise '
|
31
|
+
appraise 'jruby-9.2.0.0' do
|
26
32
|
end
|
data/README.md
CHANGED
@@ -22,8 +22,8 @@ Requires Ruby 1.9+ (any engine)
|
|
22
22
|
| version | [](https://rubygems.org/gems/rspec-pending_for) |
|
23
23
|
| dependencies | [](https://depfu.com/github/pboling/rspec-pending_for?project_id=5614) |
|
24
24
|
| continuous integration | [](https://travis-ci.org/pboling/rspec-pending_for) |
|
25
|
-
| test coverage | [](https://codeclimate.com/github/pboling/rspec-pending_for/test_coverage) |
|
26
|
+
| maintainability | [](https://codeclimate.com/github/pboling/rspec-pending_for/maintainability) |
|
27
27
|
| code triage | [](https://www.codetriage.com/pboling/rspec-pending_for) |
|
28
28
|
| homepage | [on Github.com][homepage], [on Railsbling.com][blogpage] |
|
29
29
|
| documentation | [on RDoc.info][documentation] |
|
@@ -129,7 +129,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/pbolin
|
|
129
129
|
|
130
130
|
## Code of Conduct
|
131
131
|
|
132
|
-
Everyone interacting in the
|
132
|
+
Everyone interacting in the Rspec::PendingFor project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/pboling/rspec-pending_for/blob/master/CODE_OF_CONDUCT.md).
|
133
133
|
|
134
134
|
## Versioning
|
135
135
|
|
@@ -162,13 +162,13 @@ or in a `gemspec`
|
|
162
162
|
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
163
163
|
[documentation]: http://rdoc.info/github/pboling/rspec-pending_for/frames
|
164
164
|
[homepage]: https://github.com/pboling/rspec-pending_for
|
165
|
+
[blogpage]: http://www.railsbling.com/tags/rspec-pending_for/
|
165
166
|
[license]: LICENSE
|
166
167
|
[railsbling]: http://www.railsbling.com
|
167
168
|
[peterboling]: https://about.me/peter.boling
|
168
169
|
[refugees]: https://www.crowdrise.com/helprefugeeswithhopefortomorrowliberia/fundraiser/peterboling
|
169
170
|
[gplus]: https://plus.google.com/+PeterBoling/posts
|
170
171
|
[topcoder]: https://www.topcoder.com/members/pboling/
|
171
|
-
[blogpage]: http://www.railsbling.com/tags/rspec-pending_for/
|
172
172
|
[angellist]: https://angel.co/peter-boling
|
173
173
|
[coderwall]: http://coderwall.com/pboling
|
174
174
|
[twitter]: http://twitter.com/galtzo
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/rspec-pending_for.gemspec
CHANGED
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.
|
4
|
+
version: 0.1.11
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
@@ -147,17 +147,18 @@ files:
|
|
147
147
|
- Rakefile
|
148
148
|
- bin/console
|
149
149
|
- bin/setup
|
150
|
-
- gemfiles/jruby_1.7.
|
151
|
-
- gemfiles/jruby_9.1.
|
150
|
+
- gemfiles/jruby_1.7.26.gemfile
|
151
|
+
- gemfiles/jruby_9.1.9.0.gemfile
|
152
|
+
- gemfiles/jruby_9.2.0.0.gemfile
|
152
153
|
- gemfiles/jruby_head.gemfile
|
153
154
|
- gemfiles/ruby_1.8.7_p371.gemfile
|
154
155
|
- gemfiles/ruby_1.9.3_p551.gemfile
|
155
156
|
- gemfiles/ruby_2.0.0_p648.gemfile
|
156
157
|
- gemfiles/ruby_2.1.10.gemfile
|
157
|
-
- gemfiles/ruby_2.2.
|
158
|
-
- gemfiles/ruby_2.3.
|
159
|
-
- gemfiles/ruby_2.4.
|
160
|
-
- gemfiles/ruby_2.5.
|
158
|
+
- gemfiles/ruby_2.2.10.gemfile
|
159
|
+
- gemfiles/ruby_2.3.7.gemfile
|
160
|
+
- gemfiles/ruby_2.4.4.gemfile
|
161
|
+
- gemfiles/ruby_2.5.1.gemfile
|
161
162
|
- gemfiles/ruby_head.gemfile
|
162
163
|
- lib/rspec/pending_for.rb
|
163
164
|
- lib/rspec/pending_for/build.rb
|