rao-shoulda_matchers 0.0.42.pre → 0.0.47.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: 81310d0df99978bd22c47268aaa684de3514467b8389e92e26ec6a38164cc549
4
- data.tar.gz: 2e06ef044581924026bb811e762d31fc54f12c7274704a8b7d8ec39e45707fcb
3
+ metadata.gz: e1b9575a75128b6320aec6223d059e1cd616c5456eebe93b30c2449ff837d652
4
+ data.tar.gz: 75918fa13478176444153ab65eec4a05292925153c1f5e76ab1ab1f8bd47d060
5
5
  SHA512:
6
- metadata.gz: c6a79712591aec341509777c5c6520643869c320c316a29aa7265c8a3e3322f3445671451ea7cfa8b80e0fc73a9e970d96069ac02d35881a98e7f14c8e90dc31
7
- data.tar.gz: 940c6e661e5ed35ab0d9c5a59fffbddb800f1643d85fefd8d61b276fedce1446d689d006f8d852ed628fa125e2a0bd7d48c985f32b21a4474292a61497f77d81
6
+ metadata.gz: 3dddb14b9d8d312694f187ac862a84dccebfa5bb6f167a59f44f9ba57021befb4bcc9bbb076e3fac6fd24f039afa8cc4966b85bf04233d9fbc978ab725771204
7
+ data.tar.gz: 7d98afaeddb4dbcd46723b10c3ec32a6c69145c52e3edd511b5f18548214cf8f848ccb103af51a8f6408bcf661ef8e02a5693eb940c62aaf9558c32ac843785a
@@ -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.42.pre
4
+ version: 0.0.47.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-05-20 00:00:00.000000000 Z
11
+ date: 2020-10-25 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.3
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.