tailwindcss-rails 2.4.0-aarch64-linux → 2.4.1-aarch64-linux
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 +4 -4
 - data/README.md +12 -0
 - data/lib/puma/plugin/tailwindcss.rb +6 -1
 - data/lib/tailwindcss/version.rb +1 -1
 - metadata +3 -3
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA256:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 9cf536b1c9653a50759b0e186459569e344e3cdae543556677e9fa2e1353bd81
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: ac7a55cefd83636b267836d6e9aaafc481f6fecf4766bd82f51ea7e61d395ab9
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: aa5382bdb2f0011333bb2fa2ec69bd1d285866f010e7cf38e21331bb83860f5680b59e8265aac237a57b36fa1d194ed7e3da562614860674df3e1a6fadc213a3
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: ef069156a3bea7f888d4b494724ae5a3c09229d8f00e35e90288d2ca2c69438b79bb3f74effc07c33e68bc632b4d2f47f8cb774f977514650a052660177c5f76
         
     | 
    
        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,17 @@ 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 `ruby/debug` with the Puma plugin
         
     | 
| 
      
 190 
     | 
    
         
            +
             
     | 
| 
      
 191 
     | 
    
         
            +
            If you are using the `ruby/debug` debugger while using the Puma plugin from this gem, and you're experiencing what looks like hanging or lost keystrokes, then you'll need to disable Reline.
         
     | 
| 
      
 192 
     | 
    
         
            +
             
     | 
| 
      
 193 
     | 
    
         
            +
            You can read the [`debug` documentation](https://github.com/ruby/debug?tab=readme-ov-file#configuration) for more information, but the easiest thing to do is to set the environment variable `RUBY_DEBUG_NO_RELINE`:
         
     | 
| 
      
 194 
     | 
    
         
            +
             
     | 
| 
      
 195 
     | 
    
         
            +
            ``` sh
         
     | 
| 
      
 196 
     | 
    
         
            +
            RUBY_DEBUG_NO_RELINE=1 rails server
         
     | 
| 
      
 197 
     | 
    
         
            +
            ```
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
             
     | 
| 
       188 
200 
     | 
    
         
             
            ### Running in a docker container exits prematurely
         
     | 
| 
       189 
201 
     | 
    
         | 
| 
       190 
202 
     | 
    
         
             
            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.
         
     | 
| 
         @@ -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 
     | 
    
         
            -
                   
     | 
| 
      
 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 }
         
     | 
    
        data/lib/tailwindcss/version.rb
    CHANGED
    
    
    
        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. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 2.4.1
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: aarch64-linux
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - David Heinemeier Hansson
         
     | 
| 
       8 
8 
     | 
    
         
             
            autorequire:
         
     | 
| 
       9 
9 
     | 
    
         
             
            bindir: exe
         
     | 
| 
       10 
10 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       11 
     | 
    
         
            -
            date: 2024-04- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2024-04-25 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. 
     | 
| 
      
 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.
         
     |