Skip to content

Commit 3607ecb

Browse files
authored
Merge pull request #571 from bopm/fix/puma-plugin-engine-entry-point-issue
Fix Puma plugin entry point issue
2 parents 0e96058 + a6ec1a8 commit 3607ecb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
### Improved
66

77
* Support Rails 8.1 scaffolding which disables system tests by default. #585 @flavorjones
8+
* Puma plugin now has experimental support for Rails engines. #567 @bopm
89

910

1011
## v4.3.0 / 2025-07-06

lib/puma/plugin/tailwindcss.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ def start(launcher)
1313
# If we use system(*command) instead, IRB and Debug can't read from $stdin
1414
# correctly bacause some keystrokes will be taken by watch_command.
1515
begin
16-
IO.popen(Tailwindcss::Commands.watch_command, 'r+') do |io|
16+
IO.popen(['bin/rails', 'tailwindcss:watch'], 'r+') do |io|
1717
IO.copy_stream(io, $stdout)
1818
end
1919
rescue Interrupt

0 commit comments

Comments
 (0)