rspec-pending_for 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +1 -1
- data/LICENSE +1 -1
- data/README.md +39 -33
- data/gemfiles/jruby_1.7.27.gemfile +3 -3
- data/gemfiles/jruby_9.1.15.0.gemfile +4 -4
- data/gemfiles/jruby_head.gemfile +4 -4
- data/gemfiles/ruby_1.8.7_p371.gemfile +3 -3
- data/gemfiles/ruby_1.9.3_p551.gemfile +3 -3
- data/gemfiles/ruby_2.0.0_p648.gemfile +3 -3
- data/gemfiles/ruby_2.1.10.gemfile +4 -4
- data/gemfiles/ruby_2.2.9.gemfile +4 -4
- data/gemfiles/ruby_2.3.6.gemfile +4 -4
- data/gemfiles/ruby_2.4.3.gemfile +4 -4
- data/gemfiles/ruby_2.5.0.gemfile +4 -4
- data/gemfiles/ruby_head.gemfile +4 -4
- data/lib/rspec/pending_for.rb +1 -0
- data/lib/rspec/pending_for/build.rb +1 -0
- data/lib/rspec/pending_for/version.rb +1 -1
- data/rspec-pending_for.gemspec +5 -7
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: df722bc871f5e1bfe5671cdcdc83a67273c11835764875d763a690501e4501eb
|
4
|
+
data.tar.gz: 413723956f83d968aac894f31adae35219552dc294fee6effbef5f9019a97562
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e853033370e764d94f05dbeaf91a4830ce63ca2cbaf356b194cca34756f13c4b5570001c992a17be7f689298fd853af245f3399bfa47b8506cce112f5003fa1
|
7
|
+
data.tar.gz: 94a6839e4419271074d026f6c72b389914d82ef34d6d4e92878254716f25db703eefba6ab39420ce88c5763a70e863d074af99c6da89c3ef68b6d6db995662f6
|
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at peter.boling@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
CHANGED
@@ -2,7 +2,7 @@ source 'https://rubygems.org'
|
|
2
2
|
|
3
3
|
group :test do
|
4
4
|
ruby_version = Gem::Version.new(RUBY_VERSION)
|
5
|
-
gem 'rubocop', '~> 0.
|
5
|
+
gem 'rubocop', '~> 0.59.0' if ruby_version >= Gem::Version.new('2.1')
|
6
6
|
end
|
7
7
|
|
8
8
|
# Specify your gem's dependencies in rspec-pending_for.gemspec
|
data/LICENSE
CHANGED
data/README.md
CHANGED
@@ -14,32 +14,20 @@ end
|
|
14
14
|
|
15
15
|
Requires Ruby 1.9+ (any engine)
|
16
16
|
|
17
|
-
| Project | Rspec::PendingFor
|
18
|
-
|------------------------ |
|
19
|
-
| gem name | rspec-pending_for
|
20
|
-
| license | MIT
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
| live chat | [![Join the chat at https://gitter.im/pboling/rspec-pending_for](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/pboling/rspec-pending_for?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) |
|
32
|
-
| author | Peter Boling ([Rubyish Blog](https://railsbling.com)) |
|
33
|
-
| Spread ~♡ⓛⓞⓥⓔ♡~↝ | [on AngelList][angellist], [on Coderwall][coderwall] |
|
34
|
-
|
35
|
-
[semver]: http://semver.org/
|
36
|
-
[pvc]: http://docs.rubygems.org/read/chapter/16#page74
|
37
|
-
[railsbling]: http://www.railsbling.com
|
38
|
-
[peterboling]: http://www.peterboling.com
|
39
|
-
[angellist]: https://angel.co/peter-boling
|
40
|
-
[coderwall]: http://coderwall.com/pboling
|
41
|
-
[documentation]: http://rdoc.info/github/pboling/rspec-pending_for/frames
|
42
|
-
[homepage]: https://github.com/pboling/rspec-pending_for
|
17
|
+
| Project | Rspec::PendingFor |
|
18
|
+
|------------------------ | ----------------------- |
|
19
|
+
| gem name | [rspec-pending_for](https://rubygems.org/gems/rspec-pending_for) |
|
20
|
+
| license | [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT) |
|
21
|
+
| download rank | [![Downloads Today](https://img.shields.io/gem/rd/rspec-pending_for.svg)](https://github.com/pboling/rspec-pending_for) |
|
22
|
+
| version | [![Version](https://img.shields.io/gem/v/rspec-pending_for.svg)](https://rubygems.org/gems/rspec-pending_for) |
|
23
|
+
| dependencies | [![Depfu](https://badges.depfu.com/badges/272ce0df3bc6df5cbea9354e2c3b65af/count.svg)](https://depfu.com/github/pboling/rspec-pending_for?project_id=5614) |
|
24
|
+
| continuous integration | [![Build Status](https://travis-ci.org/pboling/rspec-pending_for.svg?branch=master)](https://travis-ci.org/pboling/rspec-pending_for) |
|
25
|
+
| test coverage | [![Test Coverage](https://api.codeclimate.com/v1/badges/fe504d4ab2fb77cecf7d/test_coverage)](https://codeclimate.com/github/pboling/rspec-pending_for/test_coverage) |
|
26
|
+
| maintainability | [![Maintainability](https://api.codeclimate.com/v1/badges/fe504d4ab2fb77cecf7d/maintainability)](https://codeclimate.com/github/pboling/rspec-pending_for/maintainability) |
|
27
|
+
| code triage | [![Open Source Helpers](https://www.codetriage.com/pboling/rspec-pending_for/badges/users.svg)](https://www.codetriage.com/pboling/rspec-pending_for) |
|
28
|
+
| homepage | [on Github.com][homepage], [on Railsbling.com][blogpage] |
|
29
|
+
| documentation | [on RDoc.info][documentation] |
|
30
|
+
| Spread ~♡ⓛⓞⓥⓔ♡~ | [🌍 🌎 🌏][peterboling], [🍚][refugees], [➕][gplus], [👼][angellist], [🐛][topcoder], [:shipit:][coderwall], [![Tweet Peter](https://img.shields.io/twitter/follow/galtzo.svg?style=social&label=Follow)][twitter] |
|
43
31
|
|
44
32
|
## Installation
|
45
33
|
|
@@ -137,7 +125,11 @@ See the [Network View](https://github.com/pboling/rspec-pending_for/network) and
|
|
137
125
|
5. Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
138
126
|
6. Create new Pull Request
|
139
127
|
|
140
|
-
Bug reports and pull requests are welcome on GitHub at https://github.com/pboling/rspec-pending_for.
|
128
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/pboling/rspec-pending_for. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
129
|
+
|
130
|
+
## Code of Conduct
|
131
|
+
|
132
|
+
Everyone interacting in the AnonymousActiveRecord 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).
|
141
133
|
|
142
134
|
## Versioning
|
143
135
|
|
@@ -153,16 +145,30 @@ dependency on this gem using the [Pessimistic Version Constraint][pvc] with two
|
|
153
145
|
|
154
146
|
For example:
|
155
147
|
|
156
|
-
|
148
|
+
For example in a `Gemfile`:
|
149
|
+
|
150
|
+
gem 'rspec-pending_for', '~> 0.1', group: :test
|
151
|
+
|
152
|
+
or in a `gemspec`
|
153
|
+
|
154
|
+
spec.add_dependency 'rspec-pending_for', '~> 0.1'
|
157
155
|
|
158
156
|
## Legal
|
159
157
|
|
160
|
-
* MIT License - See LICENSE file in this project
|
161
|
-
* Copyright (c) 2015 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
158
|
+
* MIT License - See [LICENSE][license] file in this project [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](https://opensource.org/licenses/MIT)
|
159
|
+
* Copyright (c) 2015 - 2018 [Peter H. Boling][peterboling] of [Rails Bling][railsbling]
|
162
160
|
|
163
161
|
[semver]: http://semver.org/
|
164
|
-
[pvc]: http://
|
165
|
-
[railsbling]: http://www.railsbling.com
|
166
|
-
[peterboling]: https://about.me/peter.boling
|
162
|
+
[pvc]: http://guides.rubygems.org/patterns/#pessimistic-version-constraint
|
167
163
|
[documentation]: http://rdoc.info/github/pboling/rspec-pending_for/frames
|
168
164
|
[homepage]: https://github.com/pboling/rspec-pending_for
|
165
|
+
[license]: LICENSE
|
166
|
+
[railsbling]: http://www.railsbling.com
|
167
|
+
[peterboling]: https://about.me/peter.boling
|
168
|
+
[refugees]: https://www.crowdrise.com/helprefugeeswithhopefortomorrowliberia/fundraiser/peterboling
|
169
|
+
[gplus]: https://plus.google.com/+PeterBoling/posts
|
170
|
+
[topcoder]: https://www.topcoder.com/members/pboling/
|
171
|
+
[blogpage]: http://www.railsbling.com/tags/rspec-pending_for/
|
172
|
+
[angellist]: https://angel.co/peter-boling
|
173
|
+
[coderwall]: http://coderwall.com/pboling
|
174
|
+
[twitter]: http://twitter.com/galtzo
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
@@ -13,4 +13,4 @@ group :test do
|
|
13
13
|
gem 'rspec'
|
14
14
|
end
|
15
15
|
|
16
|
-
gemspec path
|
16
|
+
gemspec :path => '../'
|
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/gemfiles/jruby_head.gemfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
@@ -13,4 +13,4 @@ group :test do
|
|
13
13
|
gem 'rspec'
|
14
14
|
end
|
15
15
|
|
16
|
-
gemspec :path =>
|
16
|
+
gemspec :path => '../'
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
@@ -13,4 +13,4 @@ group :test do
|
|
13
13
|
gem 'rspec'
|
14
14
|
end
|
15
15
|
|
16
|
-
gemspec path
|
16
|
+
gemspec :path => '../'
|
@@ -1,9 +1,9 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
@@ -13,4 +13,4 @@ group :test do
|
|
13
13
|
gem 'rspec'
|
14
14
|
end
|
15
15
|
|
16
|
-
gemspec path
|
16
|
+
gemspec :path => '../'
|
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/gemfiles/ruby_2.2.9.gemfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/gemfiles/ruby_2.3.6.gemfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/gemfiles/ruby_2.4.3.gemfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/gemfiles/ruby_2.5.0.gemfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/gemfiles/ruby_head.gemfile
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
# This file was generated by Appraisal
|
2
2
|
|
3
|
-
source
|
3
|
+
source 'https://rubygems.org'
|
4
4
|
|
5
5
|
group :development do
|
6
|
-
gem
|
6
|
+
gem 'pry'
|
7
7
|
end
|
8
8
|
|
9
9
|
group :test do
|
10
|
-
gem "rubocop", "~> 0.52.1"
|
11
10
|
gem 'rake'
|
12
11
|
gem 'rspec'
|
12
|
+
gem 'rubocop', '~> 0.52.1'
|
13
13
|
end
|
14
14
|
|
15
|
-
gemspec path
|
15
|
+
gemspec :path => '../'
|
data/lib/rspec/pending_for.rb
CHANGED
@@ -41,6 +41,7 @@ module Rspec
|
|
41
41
|
|
42
42
|
def modify_example_with(message, options)
|
43
43
|
raise(EngineOrVersionsRequired, :pending_for) unless options[:engine] || options[:versions]
|
44
|
+
|
44
45
|
build = Build.new(options)
|
45
46
|
send(message, build.message) if build.current_matches_specified?
|
46
47
|
end
|
@@ -57,6 +57,7 @@ module Rspec
|
|
57
57
|
|
58
58
|
def warn_about_unrecognized_engine
|
59
59
|
return false if relevant_engine.nil? || !INTERPRETER_MATRIX[relevant_engine].nil?
|
60
|
+
|
60
61
|
warn %[
|
61
62
|
Engine specified (#{relevant_engine}) is not known to rspec-pending_for.
|
62
63
|
If it is a real RUBY_ENGINE, please report as a bug to #{ISSUES_LINK}
|
data/rspec-pending_for.gemspec
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
lib = File.expand_path('../lib', __FILE__)
|
1
|
+
lib = File.expand_path('lib', __dir__)
|
3
2
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
3
|
require 'rspec/pending_for/version'
|
5
4
|
|
@@ -9,10 +8,9 @@ Gem::Specification.new do |spec|
|
|
9
8
|
spec.authors = ['Peter Boling']
|
10
9
|
spec.email = ['peter.boling@gmail.com']
|
11
10
|
|
12
|
-
spec.summary =
|
13
|
-
Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby) / version combinations
|
14
|
-
SUMMARY
|
11
|
+
spec.summary = 'Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby) / version combinations'
|
15
12
|
spec.homepage = 'https://github.com/pboling/rspec-pending_for'
|
13
|
+
spec.license = 'MIT'
|
16
14
|
|
17
15
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
16
|
spec.bindir = 'exe'
|
@@ -24,8 +22,8 @@ SUMMARY
|
|
24
22
|
spec.add_dependency 'ruby_version', '~> 1.0'
|
25
23
|
|
26
24
|
spec.add_development_dependency 'appraisal'
|
27
|
-
spec.add_development_dependency 'bundler', '~> 1.
|
25
|
+
spec.add_development_dependency 'bundler', '~> 1.16'
|
28
26
|
spec.add_development_dependency 'rake', ['>= 10.0', '<= 13']
|
29
|
-
spec.add_development_dependency 'rspec', '~> 3.
|
27
|
+
spec.add_development_dependency 'rspec', '~> 3.8'
|
30
28
|
spec.add_development_dependency 'wwtd'
|
31
29
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Peter Boling
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-01
|
11
|
+
date: 2018-10-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec-core
|
@@ -72,14 +72,14 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '1.
|
75
|
+
version: '1.16'
|
76
76
|
type: :development
|
77
77
|
prerelease: false
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
79
79
|
requirements:
|
80
80
|
- - "~>"
|
81
81
|
- !ruby/object:Gem::Version
|
82
|
-
version: '1.
|
82
|
+
version: '1.16'
|
83
83
|
- !ruby/object:Gem::Dependency
|
84
84
|
name: rake
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|
@@ -106,14 +106,14 @@ dependencies:
|
|
106
106
|
requirements:
|
107
107
|
- - "~>"
|
108
108
|
- !ruby/object:Gem::Version
|
109
|
-
version: '3.
|
109
|
+
version: '3.8'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
112
|
version_requirements: !ruby/object:Gem::Requirement
|
113
113
|
requirements:
|
114
114
|
- - "~>"
|
115
115
|
- !ruby/object:Gem::Version
|
116
|
-
version: '3.
|
116
|
+
version: '3.8'
|
117
117
|
- !ruby/object:Gem::Dependency
|
118
118
|
name: wwtd
|
119
119
|
requirement: !ruby/object:Gem::Requirement
|
@@ -140,6 +140,7 @@ files:
|
|
140
140
|
- ".rubocop.yml"
|
141
141
|
- ".travis.yml"
|
142
142
|
- Appraisals
|
143
|
+
- CODE_OF_CONDUCT.md
|
143
144
|
- Gemfile
|
144
145
|
- LICENSE
|
145
146
|
- README.md
|
@@ -165,7 +166,8 @@ files:
|
|
165
166
|
- lib/rspec/pending_for/version.rb
|
166
167
|
- rspec-pending_for.gemspec
|
167
168
|
homepage: https://github.com/pboling/rspec-pending_for
|
168
|
-
licenses:
|
169
|
+
licenses:
|
170
|
+
- MIT
|
169
171
|
metadata: {}
|
170
172
|
post_install_message:
|
171
173
|
rdoc_options: []
|
@@ -183,7 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
183
185
|
version: '0'
|
184
186
|
requirements: []
|
185
187
|
rubyforge_project:
|
186
|
-
rubygems_version: 2.7.
|
188
|
+
rubygems_version: 2.7.7
|
187
189
|
signing_key:
|
188
190
|
specification_version: 4
|
189
191
|
summary: Mark specs pending or skipped for specific Ruby engine (e.g. MRI or JRuby)
|