rails_accessibility_testing 1.5.2 → 1.5.3

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: 536d89da2148586b8572bec8ed2c77588f5bc62bc35ecf0f2836455d9c13eb5a
4
- data.tar.gz: 2d57943d97bd7d616d61544d3c9466031548d4f9793cc73d9734ed4f087e884f
3
+ metadata.gz: 58922a0f7334ba5695d55aeb1d02576e975504492d7ae47c1ae37552cba246c3
4
+ data.tar.gz: a07f66b20c17b6da10ef18518d58a20d4de9429f2fac3af7dc9e2505bf3d218e
5
5
  SHA512:
6
- metadata.gz: ea37b86ff87c0d6ff42b5a7db53d2ceeaae476527c040d1bb40d5fcc270df64b8a5fbb94b35b63103c3356cb9e4d3c0a46ac52559c4e754ec22099594d950dc5
7
- data.tar.gz: 95026ae9c082ce3cb734b49c100b64cdc7de019640566c83941eb3965ce9e614bcd740bbcec794fe4f009fd2c847a1a5220a9977b6346305d70361798a6093ff
6
+ metadata.gz: 5f12b4e6da01ca76d1deb3aba955f284915857bf003fa6cb7568b8be05ea78e2eb7dddaf94bbe89fbe665cf99afb951ffbb86517eb3ea4862084b767939e779a
7
+ data.tar.gz: f638f6fbc1a0e4f7f3405f2c49929172d364910ad8140be4b662e823ab3c734fcde487666ae9874d973ec6d2643cb97ca2dc33e4419f805be45b0e2dec8daa2e
data/CHANGELOG.md CHANGED
@@ -5,6 +5,32 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.5.3] - 2024-11-20
9
+
10
+ ### Fixed
11
+ - **Gem packaging**: Verified all required files are included in gem package
12
+ - All executables (rails_a11y, rails_server_safe, a11y_live_scanner)
13
+ - All generator templates (.erb files)
14
+ - Complete library files and documentation
15
+
16
+ ### Verified
17
+ - All executables properly included in gemspec
18
+ - Generator templates correctly packaged
19
+ - rails_server_safe Ruby script working correctly
20
+ - Local development setup confirmed working
21
+
22
+ ## [1.5.2] - 2024-11-20
23
+
24
+ ### Fixed
25
+ - **Bundler compatibility**: Converted `rails_server_safe` from shell script to Ruby script to fix Bundler wrapper loading issues
26
+ - **Generator Procfile.dev setup**: Generator now automatically uses `rails_server_safe` in Procfile.dev to prevent Foreman from terminating all processes when server is already running
27
+
28
+ ### Changed
29
+ - Generator behavior: When installing, automatically replaces `web: bin/rails server` with `web: bundle exec rails_server_safe` in existing Procfile.dev files
30
+ - Generator behavior: When creating new Procfile.dev, uses `rails_server_safe` by default
31
+
32
+ ## [1.5.1] - 2024-11-20
33
+
8
34
  ## [1.5.0] - 2025-11-19
9
35
 
10
36
  ### 🎉 Major Release: Enhanced View Detection & Performance Optimizations
@@ -301,6 +327,7 @@ This release introduces significant improvements to view file detection, partial
301
327
  - Compatible with RSpec Rails 6.0+
302
328
  - Modular architecture with rule engine and check definitions
303
329
 
330
+ [1.5.2]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.5.2
304
331
  [1.5.0]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.5.0
305
332
  [1.4.3]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.4.3
306
333
  [1.4.2]: https://github.com/rayraycodes/rails-accessibility-testing/releases/tag/v1.4.2
@@ -1,4 +1,4 @@
1
1
  module RailsAccessibilityTesting
2
- VERSION = "1.5.2"
2
+ VERSION = "1.5.3"
3
3
  end
4
4
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails_accessibility_testing
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.2
4
+ version: 1.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Regan Maharjan