We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 0e96058 + a6ec1a8 commit 3607ecbCopy full SHA for 3607ecb
CHANGELOG.md
@@ -5,6 +5,7 @@
5
### Improved
6
7
* 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
9
10
11
## v4.3.0 / 2025-07-06
lib/puma/plugin/tailwindcss.rb
@@ -13,7 +13,7 @@ def start(launcher)
13
# If we use system(*command) instead, IRB and Debug can't read from $stdin
14
# correctly bacause some keystrokes will be taken by watch_command.
15
begin
16
- IO.popen(Tailwindcss::Commands.watch_command, 'r+') do |io|
+ IO.popen(['bin/rails', 'tailwindcss:watch'], 'r+') do |io|
17
IO.copy_stream(io, $stdout)
18
end
19
rescue Interrupt
0 commit comments