rspec-rails 5.1.1 → 5.1.2

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: 74e5cd9c50ca6cdb830e27b5944b9777e850687cc794914ab1bf4446e48b70cc
4
- data.tar.gz: d597eb4b7fb143d1e59bb0578c6e1ba3aaa974debbe9b136e49a89038c97a21b
3
+ metadata.gz: be221e5df3386cb55e14f8047e02628bc11098596dcce06749701ac0b7497782
4
+ data.tar.gz: 56b12531541ff18599c13618ba2937859bb4cd860cc814b3350046ec4949e870
5
5
  SHA512:
6
- metadata.gz: 4f643165f2b131744cf26d7c77bd03f6406999cc3e243f22861b1018f408e3e2ac1f43b080814fffc33aeb9fa840f937d8d2867bc273d7c4ec502856e593e353
7
- data.tar.gz: e13e2dfca09676af925920a691ceb597afd98149570773f2fd4081f8d8ca42d4d91af0946a6bd52fbb55db3326ca050fb4c8f9357a2415b24e3396c1b1972b2d
6
+ metadata.gz: a1786502c478ab9de29fbd59ce16371178776a7283698ba048b203f62aa614fc6c28e4c72b5064595f4eacd2cf309443de8d0d6803ac604e9d11a641c6f86c4b
7
+ data.tar.gz: 5860654b1926c2f2cdd998d2b84ac075167f7107bd687b74dae5bb9e17d7e76ef6b0c96dd022ec7a9be5dc0fe008e845808187080e97b400bec18b35d1872e76
checksums.yaml.gz.sig CHANGED
Binary file
data/Changelog.md CHANGED
@@ -1,6 +1,11 @@
1
1
  ### Development
2
2
  [Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.1...5-1-maintenance)
3
3
 
4
+ Bug Fixes:
5
+
6
+ * Fix controller scaffold templates parameter name. (Taketo Takashima, #2591)
7
+ * Include generator specs in the inferred list of specs. (Jason Karns, #2597)
8
+
4
9
  ### 5.1.1 / 2022-03-07
5
10
  [Full Changelog](https://github.com/rspec/rspec-rails/compare/v5.1.0...v5.1.1)
6
11
 
@@ -100,7 +100,7 @@ RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:control
100
100
 
101
101
  it "renders a JSON response with the <%= singular_table_name %>" do
102
102
  <%= file_name %> = <%= class_name %>.create! valid_attributes
103
- put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: valid_attributes}, session: valid_session
103
+ put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: new_attributes}, session: valid_session
104
104
  expect(response).to have_http_status(:ok)
105
105
  expect(response.content_type).to eq('application/json')
106
106
  end
@@ -112,7 +112,7 @@ RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:control
112
112
 
113
113
  it "redirects to the <%= singular_table_name %>" do
114
114
  <%= file_name %> = <%= class_name %>.create! valid_attributes
115
- put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: valid_attributes}, session: valid_session
115
+ put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: new_attributes}, session: valid_session
116
116
  expect(response).to redirect_to(<%= file_name %>)
117
117
  end
118
118
  end
@@ -28,6 +28,7 @@ module RSpec
28
28
  DIRECTORY_MAPPINGS = {
29
29
  channel: %w[spec channels],
30
30
  controller: %w[spec controllers],
31
+ generator: %w[spec generator],
31
32
  helper: %w[spec helpers],
32
33
  job: %w[spec jobs],
33
34
  mailer: %w[spec mailers],
@@ -3,7 +3,7 @@ module RSpec
3
3
  # Version information for RSpec Rails.
4
4
  module Version
5
5
  # Current version of RSpec Rails, in semantic versioning format.
6
- STRING = '5.1.1'
6
+ STRING = '5.1.2'
7
7
  end
8
8
  end
9
9
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rspec-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 5.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Chelimsky
@@ -44,7 +44,7 @@ cert_chain:
44
44
  ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
45
45
  F3MdtaDehhjC
46
46
  -----END CERTIFICATE-----
47
- date: 2022-03-07 00:00:00.000000000 Z
47
+ date: 2022-04-24 00:00:00.000000000 Z
48
48
  dependencies:
49
49
  - !ruby/object:Gem::Dependency
50
50
  name: actionpack
@@ -308,7 +308,7 @@ licenses:
308
308
  - MIT
309
309
  metadata:
310
310
  bug_tracker_uri: https://github.com/rspec/rspec-rails/issues
311
- changelog_uri: https://github.com/rspec/rspec-rails/blob/v5.1.1/Changelog.md
311
+ changelog_uri: https://github.com/rspec/rspec-rails/blob/v5.1.2/Changelog.md
312
312
  documentation_uri: https://rspec.info/documentation/
313
313
  mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
314
314
  source_code_uri: https://github.com/rspec/rspec-rails
metadata.gz.sig CHANGED
Binary file