tailwindcss-rails 2.4.0-x86_64-darwin → 2.5.0-x86_64-darwin

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: 424105d7e5f2250d2af540a59b6f7fb11c357e4262bc5d4e0686f0af607a1398
4
- data.tar.gz: 67c63db4540474f6c0c07bf405fcc519a82d91b646d9f0dfb2fb29cf8da9292a
3
+ metadata.gz: 17c1e1830dfad63a90e03fae6c349875616902978f4e324f0ec8f95f62855a72
4
+ data.tar.gz: 55d5ece45e0871d79aedc94fbed73954c7fff77fb967cd97cd62c86bb7bd6ab8
5
5
  SHA512:
6
- metadata.gz: a1c952d3a69f7a0c2993b79e9e3f7d7e44df0c0bdebfe8158b08788853cc132a5a55c341537d5051cea82ee816f18c3c1087569ac823f2760a44c30e2c979d88
7
- data.tar.gz: 7faa6f79a79002f586f121870d75b15e8196d0c24892e9f4342c42c87cb778202eb36321fe4da14c8c20f550a2b045082ad2716d97c8dd1622b35fb58ab73380
6
+ metadata.gz: ea0f506b3d15afbefadbd5a8b899aa5358388b048e33197fc1a0735c5a99c8a1d44dc09e3a428227eb057d2859523dff797b9f05886b75def548723cb14b33dc
7
+ data.tar.gz: 3560285c67e7494aeb8e322043a4247cd903c7a45b74d95d54d53f51c16dfaea342a90141b6fce004255898573b0900d3bb8a5bea4a44a5b8746a24193da80a5
data/README.md CHANGED
@@ -17,6 +17,7 @@
17
17
  * [Using with PostCSS](#using-with-postcss)
18
18
  * [Custom inputs or outputs](#custom-inputs-or-outputs)
19
19
  - [Troubleshooting](#troubleshooting)
20
+ * [Lost keystrokes or hanging when using `ruby/debug` with the Puma plugin](#lost-keystrokes-or-hanging-when-using-rubydebug-with-the-puma-plugin)
20
21
  * [Running in a docker container exits prematurely](#running-in-a-docker-container-exits-prematurely)
21
22
  * [Conflict with sassc-rails](#conflict-with-sassc-rails)
22
23
  * [Class names must be spelled out](#class-names-must-be-spelled-out)
@@ -185,6 +186,10 @@ If you need to use a custom input or output file, you can run `bundle exec tailw
185
186
 
186
187
  Some common problems experienced by users ...
187
188
 
189
+ ### Lost keystrokes or hanging when using terminal-based debugging tools (e.g. IRB, Pry, `ruby/debug`...etc.) with the Puma plugin
190
+
191
+ We've addressed the issue and you can avoid the problem by upgrading `tailwindcss-rails` to [v2.4.1](https://github.com/rails/tailwindcss-rails/releases/tag/v2.4.1) or later versions.
192
+
188
193
  ### Running in a docker container exits prematurely
189
194
 
190
195
  If you are running `rails tailwindcss:watch` as a process in a Docker container, set `tty: true` in `docker-compose.yml` for the appropriate container to keep the watch process running.
@@ -16,7 +16,6 @@ module.exports = {
16
16
  },
17
17
  plugins: [
18
18
  require('@tailwindcss/forms'),
19
- require('@tailwindcss/aspect-ratio'),
20
19
  require('@tailwindcss/typography'),
21
20
  require('@tailwindcss/container-queries'),
22
21
  ]
@@ -8,7 +8,12 @@ Puma::Plugin.create do
8
8
  @puma_pid = $$
9
9
  @tailwind_pid = fork do
10
10
  Thread.new { monitor_puma }
11
- system(*Tailwindcss::Commands.watch_command)
11
+ # Using IO.popen(command, 'r+') will avoid watch_command read from $stdin.
12
+ # If we use system(*command) instead, IRB and Debug can't read from $stdin
13
+ # correctly bacause some keystrokes will be taken by watch_command.
14
+ IO.popen(Tailwindcss::Commands.watch_command, 'r+') do |io|
15
+ IO.copy_stream(io, $stdout)
16
+ end
12
17
  end
13
18
 
14
19
  launcher.events.on_stopped { stop_tailwind }
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.4.0"
2
+ VERSION = "2.5.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.4.0
4
+ version: 2.5.0
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-04-08 00:00:00.000000000 Z
11
+ date: 2024-04-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -104,7 +104,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
104
  - !ruby/object:Gem::Version
105
105
  version: 3.2.0
106
106
  requirements: []
107
- rubygems_version: 3.4.19
107
+ rubygems_version: 3.5.9
108
108
  signing_key:
109
109
  specification_version: 4
110
110
  summary: Integrate Tailwind CSS with the asset pipeline in Rails.