rails-quality-assurance 1.2.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fbfaa2ba084f177367b0e73824321a2367d320af6063f7cd566ada9667955b6a
4
- data.tar.gz: d6e96d0197b9ed90e59fce7ca6aeb816e8fdc6591651d96d3cb6888e572a3c48
3
+ metadata.gz: 0cfa1412519cc43b6ad7c85191ba12a4038388f085528deacece61a5b8578bc3
4
+ data.tar.gz: a017903eb6b20ef43920d3d1e0bdc707a132b88c2bd696eccd291d9ab182d266
5
5
  SHA512:
6
- metadata.gz: d4ea679306eded2575e31dd73f5e92e57094c909b9936ff6408a2425c8b0cae1a28429ec21770dfe1edd17324cb2878311d3a3b164b88839575414fb9f62b70c
7
- data.tar.gz: 5f7a613b6185e7ce0873b06a3f7d87d18a88db874679831908754c6f403489734224589c998347030298a2b647aa7e89c84fb864f6c17c6524b5f912bda336b8
6
+ metadata.gz: f17f0c1ec9b4253a1e7fb234572c2c60bdf02b0c1e82be5f8cf712e0e711b1867d7fe7eeb811576e29dfbfc2a47edcd20c76f74c259ceeebb34f05b37af6e705
7
+ data.tar.gz: 1263fd9c715e1afc5d64a3d3d084aaf52354f9a6b1df40fde4e0bca5ac9e4c49322eb8535bc2f2302654bf6a6182ba5ad9ef2692671c2c2e55f8e08752bca465
@@ -6,5 +6,6 @@ require 'rails_quality_assurance/simplecov'
6
6
  # 2. Configure RSpec core settings if RSpec is present
7
7
  require 'rails_quality_assurance/rspec'
8
8
 
9
- # 3. Configure Capybara + Playwright system test driver
10
- require 'rails_quality_assurance/playwright'
9
+ # 3. Load the Playwright helper. Rails-specific hooks are configured after
10
+ # rspec/rails loads by rails_quality_assurance/rails_helper.
11
+ require 'rails_quality_assurance/playwright/helper'
@@ -1,5 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'active_support/core_ext/object/blank'
4
+ require 'rails_quality_assurance/playwright/helper'
3
5
  require 'uri'
4
6
 
5
7
  module RailsQualityAssurance
@@ -16,6 +18,7 @@ module RailsQualityAssurance
16
18
  return unless defined?(RSpec)
17
19
 
18
20
  verify_schema!
21
+ RailsQualityAssurance::PlaywrightHelper.configure!
19
22
  RSpec.configure do |config|
20
23
  configure_fixtures(config)
21
24
  configure_includes(config)
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'rails_quality_assurance/playwright/helper'
3
4
  require 'rails_quality_assurance/rails/helper'
4
5
  RailsQualityAssurance::RailsHelper.configure!
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module RailsQualityAssurance
4
- VERSION = '1.2.0'
4
+ VERSION = '1.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-quality-assurance
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mauricio Zaffari