tailwindcss-rails 2.0.5-x86_64-linux → 2.0.8-x86_64-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 +24 -0
- data/exe/tailwindcss +5 -0
- data/exe/x86_64-linux/tailwindcss +0 -0
- data/lib/install/tailwind.config.js +1 -1
- data/lib/install/tailwindcss.rb +4 -2
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- data/lib/tasks/build.rake +1 -1
- metadata +7 -8
- data/app/assets/stylesheets/tailwind.css +0 -295158
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 1380dc752db4f7df000b7ba4a24615efc718d87042f94d40e6027ba1455e072e
         | 
| 4 | 
            +
              data.tar.gz: a3dae61e7eef8ac9d44afb3dee98948022e5a1ce220fecd9dd282b0b7db98654
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 150dfab8164e3231255e49af605d3e46bc94c17050f1b3d2492edfdfcd0aacbe2b4d23cc88aa5aeef5923204d82a0739b199e1a4bc55caa851e83aeede490444
         | 
| 7 | 
            +
              data.tar.gz: 19663b2e1102206ecc79d30d03392dc8c95646d7d02215cb3b94d4b9e3f56b22dc5d98d38508de22bee8ae24a77b5f371834c1c5dc795fc87253937bd067ced5
         | 
    
        data/README.md
    CHANGED
    
    | @@ -25,6 +25,9 @@ With Rails 7 you can generate a new application preconfigured with Tailwind by u | |
| 25 25 |  | 
| 26 26 | 
             
            The `tailwindcss:build` is automatically attached to `assets:precompile`, so before the asset pipeline digests the files, the Tailwind output will be generated.
         | 
| 27 27 |  | 
| 28 | 
            +
            ## Building for testing
         | 
| 29 | 
            +
             | 
| 30 | 
            +
            The `tailwindcss:build` is automatically attached to `test:prepare`, which runs before Rails tests. (Note that this currently only applies to rails `test:*` tasks (like `test:all` or `test:controllers`), not "rails test", as that doesn't load `test:prepare`).
         | 
| 28 31 |  | 
| 29 32 | 
             
            ## Conflict with sassc-rails
         | 
| 30 33 |  | 
| @@ -90,6 +93,27 @@ A fix for this has been proposed upstream at https://github.com/tailwindlabs/tai | |
| 90 93 | 
             
            apk add build-base gcompat
         | 
| 91 94 | 
             
            ```
         | 
| 92 95 |  | 
| 96 | 
            +
            ### Using asset-pipeline assets
         | 
| 97 | 
            +
             | 
| 98 | 
            +
            In Rails, you want to use [assets from the asset pipeline to get fingerprinting](https://guides.rubyonrails.org/asset_pipeline.html#what-is-fingerprinting-and-why-should-i-care-questionmark). However, Tailwind isn't aware of those assets. To use assets from the pipeline, use `url(image.svg)`. [Since Sprockets v3.3.0](https://github.com/rails/sprockets-rails/pull/476) `url(image.svg)` will then automatically be rewritten to `/path/to/assets/image-7801e7538c6f1cc57aa75a5876ab0cac.svg`. So the output CSS will have the correct path to those assets.
         | 
| 99 | 
            +
             | 
| 100 | 
            +
            ```js
         | 
| 101 | 
            +
            module.exports = {
         | 
| 102 | 
            +
                theme: {
         | 
| 103 | 
            +
                    extend: {
         | 
| 104 | 
            +
                        backgroundImage: {
         | 
| 105 | 
            +
                            'image': "url('image.svg')"
         | 
| 106 | 
            +
                        }
         | 
| 107 | 
            +
                    }
         | 
| 108 | 
            +
                }
         | 
| 109 | 
            +
            }
         | 
| 110 | 
            +
            ```
         | 
| 111 | 
            +
             | 
| 112 | 
            +
            The inline version also works:
         | 
| 113 | 
            +
             | 
| 114 | 
            +
            ```html
         | 
| 115 | 
            +
            <section class="bg-[url('image.svg')]">Has the image as it's background</section>
         | 
| 116 | 
            +
            ```
         | 
| 93 117 |  | 
| 94 118 | 
             
            ## License
         | 
| 95 119 |  | 
    
        data/exe/tailwindcss
    CHANGED
    
    | @@ -32,6 +32,11 @@ if exe_path.nil? | |
| 32 32 | 
             
                  bundle install
         | 
| 33 33 |  | 
| 34 34 | 
             
                See `bundle lock --help` output for details.
         | 
| 35 | 
            +
                    
         | 
| 36 | 
            +
                If you're still seeing this message after taking those steps, try running
         | 
| 37 | 
            +
                `bundle config` and ensure `force_ruby_platform` isn't set to `true`. See
         | 
| 38 | 
            +
                https://github.com/rails/tailwindcss-rails#check-bundle_force_ruby_platform
         | 
| 39 | 
            +
                for more details.
         | 
| 35 40 | 
             
              ERRMSG
         | 
| 36 41 | 
             
              exit 1
         | 
| 37 42 | 
             
            end
         | 
| Binary file | 
    
        data/lib/install/tailwindcss.rb
    CHANGED
    
    | @@ -7,8 +7,10 @@ if APPLICATION_LAYOUT_PATH.exist? | |
| 7 7 | 
             
                <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %>
         | 
| 8 8 | 
             
              ERB
         | 
| 9 9 |  | 
| 10 | 
            -
               | 
| 11 | 
            -
             | 
| 10 | 
            +
              if File.open(APPLICATION_LAYOUT_PATH).read =~ /<body>\n\s*<%= yield %>\n\s*<\/body>/
         | 
| 11 | 
            +
                insert_into_file APPLICATION_LAYOUT_PATH.to_s, %(    <main class="container mx-auto mt-28 px-5 flex">\n  ), before: CENTERING_CONTAINER_INSERTION_POINT
         | 
| 12 | 
            +
                insert_into_file APPLICATION_LAYOUT_PATH.to_s, %(\n    </main>),  after: CENTERING_CONTAINER_INSERTION_POINT
         | 
| 13 | 
            +
              end
         | 
| 12 14 | 
             
            else
         | 
| 13 15 | 
             
              say "Default application.html.erb is missing!", :red
         | 
| 14 16 | 
             
              say %(        Add <%= stylesheet_link_tag "tailwind", "inter-font", "data-turbo-track": "reload" %> within the <head> tag in your custom layout.)
         | 
    
        data/lib/tailwindcss/upstream.rb
    CHANGED
    
    
    
        data/lib/tailwindcss/version.rb
    CHANGED
    
    
    
        data/lib/tasks/build.rake
    CHANGED
    
    | @@ -1,4 +1,4 @@ | |
| 1 | 
            -
            TAILWIND_COMPILE_COMMAND = "#{Pathname.new(__dir__).to_s}/../../exe/tailwindcss -i #{Rails.root.join("app/assets/stylesheets/application.tailwind.css")} -o #{Rails.root.join("app/assets/builds/tailwind.css")} -c #{Rails.root.join("config/tailwind.config.js")}"
         | 
| 1 | 
            +
            TAILWIND_COMPILE_COMMAND = "#{RbConfig.ruby} #{Pathname.new(__dir__).to_s}/../../exe/tailwindcss -i #{Rails.root.join("app/assets/stylesheets/application.tailwind.css")} -o #{Rails.root.join("app/assets/builds/tailwind.css")} -c #{Rails.root.join("config/tailwind.config.js")} --minify"
         | 
| 2 2 |  | 
| 3 3 | 
             
            namespace :tailwindcss do
         | 
| 4 4 | 
             
              desc "Build your Tailwind CSS"
         | 
    
        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.0. | 
| 4 | 
            +
              version: 2.0.8
         | 
| 5 5 | 
             
            platform: x86_64-linux
         | 
| 6 6 | 
             
            authors:
         | 
| 7 7 | 
             
            - David Heinemeier Hansson
         | 
| 8 | 
            -
            autorequire:
         | 
| 8 | 
            +
            autorequire: 
         | 
| 9 9 | 
             
            bindir: exe
         | 
| 10 10 | 
             
            cert_chain: []
         | 
| 11 | 
            -
            date: 2022- | 
| 11 | 
            +
            date: 2022-03-10 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: railties
         | 
| @@ -24,7 +24,7 @@ dependencies: | |
| 24 24 | 
             
                - - ">="
         | 
| 25 25 | 
             
                  - !ruby/object:Gem::Version
         | 
| 26 26 | 
             
                    version: 6.0.0
         | 
| 27 | 
            -
            description:
         | 
| 27 | 
            +
            description: 
         | 
| 28 28 | 
             
            email: david@loudthinking.com
         | 
| 29 29 | 
             
            executables:
         | 
| 30 30 | 
             
            - tailwindcss
         | 
| @@ -52,7 +52,6 @@ files: | |
| 52 52 | 
             
            - app/assets/fonts/Inter-roman.symbols.var.woff2
         | 
| 53 53 | 
             
            - app/assets/fonts/Inter-roman.vietnamese.var.woff2
         | 
| 54 54 | 
             
            - app/assets/stylesheets/inter-font.css
         | 
| 55 | 
            -
            - app/assets/stylesheets/tailwind.css
         | 
| 56 55 | 
             
            - exe/tailwindcss
         | 
| 57 56 | 
             
            - exe/x86_64-linux/tailwindcss
         | 
| 58 57 | 
             
            - lib/generators/tailwindcss/controller/controller_generator.rb
         | 
| @@ -85,7 +84,7 @@ licenses: | |
| 85 84 | 
             
            metadata:
         | 
| 86 85 | 
             
              homepage_uri: https://github.com/rails/tailwindcss-rails
         | 
| 87 86 | 
             
              rubygems_mfa_required: 'true'
         | 
| 88 | 
            -
            post_install_message:
         | 
| 87 | 
            +
            post_install_message: 
         | 
| 89 88 | 
             
            rdoc_options: []
         | 
| 90 89 | 
             
            require_paths:
         | 
| 91 90 | 
             
            - lib
         | 
| @@ -100,8 +99,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement | |
| 100 99 | 
             
                - !ruby/object:Gem::Version
         | 
| 101 100 | 
             
                  version: '0'
         | 
| 102 101 | 
             
            requirements: []
         | 
| 103 | 
            -
            rubygems_version: 3. | 
| 104 | 
            -
            signing_key:
         | 
| 102 | 
            +
            rubygems_version: 3.1.4
         | 
| 103 | 
            +
            signing_key: 
         | 
| 105 104 | 
             
            specification_version: 4
         | 
| 106 105 | 
             
            summary: Integrate Tailwind CSS with the asset pipeline in Rails.
         | 
| 107 106 | 
             
            test_files: []
         |