shoulda-context 2.0.0.rc4 → 2.0.0

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
  SHA256:
3
- metadata.gz: 763699ec6f068af0268110ac78da0f705623353af93dbc0c77cc40528fe94b4f
4
- data.tar.gz: 1d5f18df35dc1cf6ba50b769ce5d33957c03d645ee2ddb0a3d8310450c8d11fd
3
+ metadata.gz: e8e22c3d4b11c133a4712ce73ad1a8e2801f07e3a33fa5e77ec522195a557995
4
+ data.tar.gz: aaeabb3b6941a9146c1960e675342cc485e7f9f1ac1e559de51a58a714d3a44c
5
5
  SHA512:
6
- metadata.gz: bb1dadcd479b70833386e7f14bf31f152b1a510da40a0296f1e72a83aa96ac701d595789a6c14944c48dcbd57ac37dc931ecceb83a602c87900f77180543f916
7
- data.tar.gz: 5baee38e73c60543e0e9347597690ebb70ca2412ec2de56df470001c332ab814c94cf7f2b4d1fe6d81218edcb4c532f0f88821fffc93fbcf0532ad42adf082f5
6
+ metadata.gz: e5901a02ba82b904a523f8d42101933967b152fe72611f227bc7babf320b30eac79613481291e3083a710f942927fd42813ad4ae3959c623e8821e73e48d711f
7
+ data.tar.gz: efa32fcbf497339ffbda8d4dcda6ab164abc3b5d3ec421e09f9a5c5b57f2ed1af94a122631cc54e9005f210085d67185f7474b04cb49fd1b7ed9196904263fdf
@@ -1,12 +1,11 @@
1
1
  # Changelog
2
2
 
3
- ## 2.0.0 (unreleased)
3
+ ## 2.0.0 (2020-06-13)
4
4
 
5
5
  ### Backward-incompatible changes
6
6
 
7
7
  * Drop support for RSpec 2 matchers. Matchers passed to `should` must conform
8
8
  to RSpec 3's API (`failure_message` and `failure_message_when_negated`).
9
- * Drop support for Minitest 4.x (except when used by Rails 4.x).
10
9
  * Drop support for older versions of Rails. Rails 4.x-6.x are the
11
10
  only versions supported now.
12
11
  * Drop support for older versions of Ruby. Ruby 2.4.x-2.7.x are the only
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shoulda-context (2.0.0.rc4)
4
+ shoulda-context (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -12,12 +12,13 @@ Shoulda Context makes it easy to write understandable and maintainable tests
12
12
  under Minitest and Test::Unit within Rails projects or plain Ruby projects. It's
13
13
  fully compatible with your existing tests and requires no retooling to use.
14
14
 
15
- **[View the documentation for the latest version (1.2.2)][rubydocs] • [View
16
- the changelog][changelog]**
15
+ ## Quick links
17
16
 
18
- [changelog]: CHANGELOG.md
17
+ 📖 **[Read the documentation for the latest version.][rubydocs]**
18
+ 📢 **[See what's changed in recent versions.][changelog]**
19
19
 
20
- ---
20
+ [rubydocs]: http://rubydoc.info/github/thoughtbot/shoulda-context/master/frames
21
+ [changelog]: CHANGELOG.md
21
22
 
22
23
  ## Usage
23
24
 
@@ -123,8 +124,6 @@ or via `should`):
123
124
  automatically from the name of the test case class but is overridable via the
124
125
  class method version of `subject` above
125
126
 
126
- [rubydocs]: http://rubydoc.info/github/thoughtbot/shoulda-context/master/frames
127
-
128
127
  ### Assertions
129
128
 
130
129
  In addition to the main API, the gem also provides some extra assertions that
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- shoulda-context (2.0.0.rc4)
4
+ shoulda-context (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- shoulda-context (2.0.0.rc4)
4
+ shoulda-context (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- shoulda-context (2.0.0.rc4)
4
+ shoulda-context (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- shoulda-context (2.0.0.rc4)
4
+ shoulda-context (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- shoulda-context (2.0.0.rc4)
4
+ shoulda-context (2.0.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -1,5 +1,5 @@
1
1
  module Shoulda
2
2
  module Context
3
- VERSION = "2.0.0.rc4".freeze
3
+ VERSION = "2.0.0".freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shoulda-context
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc4
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - thoughtbot, inc.
@@ -13,7 +13,7 @@ authors:
13
13
  autorequire:
14
14
  bindir: exe
15
15
  cert_chain: []
16
- date: 2020-04-05 00:00:00.000000000 Z
16
+ date: 2020-06-13 00:00:00.000000000 Z
17
17
  dependencies: []
18
18
  description: Context framework extracted from Shoulda
19
19
  email: support@thoughtbot.com
@@ -101,9 +101,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
101
101
  version: '0'
102
102
  required_rubygems_version: !ruby/object:Gem::Requirement
103
103
  requirements:
104
- - - ">"
104
+ - - ">="
105
105
  - !ruby/object:Gem::Version
106
- version: 1.3.1
106
+ version: '0'
107
107
  requirements: []
108
108
  rubygems_version: 3.1.2
109
109
  signing_key: