rao-shoulda_matchers 0.0.41.pre → 0.0.46.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +30 -0
  3. metadata +4 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9fa7b6a1087201e4a53e969238480ed5212b1f94b1a0c5a20b00f1a66c31dbcf
4
- data.tar.gz: 88529209d6bf55fccd99e93b3d17323f9405a216ba49c36c54b4b31a272f0856
3
+ metadata.gz: 44d9076778929de2747aff073910c35a55d22fa333001f8bc6f79a82efb2048e
4
+ data.tar.gz: cc03397daeb8eaef03f5b0d80dc77f8bd1faaac588f52311ddd8aee8894e8718
5
5
  SHA512:
6
- metadata.gz: '091fdede50634c70760c05d8ddf372d36304d2d2aa8343656a1c5939bbd2af8003db4e5fe3b44039b63a0d84e413b6e671192f7262172ccefb834e969a378b6b'
7
- data.tar.gz: 263b42095618d83fffee8cbf58900af420cf15fbe6a4416ec972d92a1a818f6cd109e70f670ea38f98cd6ac116370cca87d4f733ba7b8b5977b449615de73696
6
+ metadata.gz: e2689978d088a4e08fa44c453ef6feee353a1e3cd8a9b90bfc8acf3b333815e19edc77d19dbc360f89d3831b0269b13500ae37338063208bcf5bac9c7e2dd08a
7
+ data.tar.gz: b8a3177a47dfaf61ff3e349ec912107a688a29b9e2db76e32ce13e48f9e78b21b3b059503c526a85857765366b4805f1fe3eec0c96377d240dc4f37f0fdf7d13
@@ -0,0 +1,30 @@
1
+ # Rao::ShouldaMatchers
2
+
3
+ RSpec shoulda style matchers for REST compliant controllers.
4
+
5
+ ## Setup
6
+
7
+ # spec/support/rao-shoulda_matchers.rb
8
+ require 'rao/shoulda/matchers'
9
+
10
+ RSpec.configure do |config|
11
+ config.include Rao::Shoulda::Matchers, type: :feature
12
+ end
13
+
14
+ ## Installation
15
+
16
+ Add this line to your application's Gemfile:
17
+
18
+ ```ruby
19
+ gem 'rao-shoulda_matchers'
20
+ ```
21
+
22
+ And then execute:
23
+ ```bash
24
+ $ bundle
25
+ ```
26
+
27
+ Or install it yourself as:
28
+ ```bash
29
+ $ gem install rao-shoulda_matchers
30
+ ```
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rao-shoulda_matchers
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.41.pre
4
+ version: 0.0.46.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roberto Vasquez Angel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-24 00:00:00.000000000 Z
11
+ date: 2020-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rao
@@ -284,6 +284,7 @@ extensions: []
284
284
  extra_rdoc_files: []
285
285
  files:
286
286
  - MIT-LICENSE
287
+ - README.md
287
288
  - Rakefile
288
289
  - lib/generators/rao/shoulda_matchers/resources_controller_generator.rb
289
290
  - lib/generators/rao/shoulda_matchers/templates/resources_controller_spec.rb
@@ -315,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
315
316
  - !ruby/object:Gem::Version
316
317
  version: 1.3.1
317
318
  requirements: []
318
- rubygems_version: 3.1.2
319
+ rubygems_version: 3.1.4
319
320
  signing_key:
320
321
  specification_version: 4
321
322
  summary: Additional shoulda matchers for Ruby on Rails.