tailwindcss-rails 2.3.0 → 2.6.0

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: f14bac83bc6a8df8bba207524b748c4f9a1a7689b012b3495814af1276e51172
4
- data.tar.gz: 5714edc137dee618ea34462f1c0033d2bf6cafda8180e0448a6a15aea9ae3ab9
3
+ metadata.gz: 1452e4868936ab1c74491799623422481b49b8c8664945c9b8183f1eca6ae335
4
+ data.tar.gz: 5162bc2f2847d0de48f42b25a23db41abaee425d4ed57edf119b3514325ce91e
5
5
  SHA512:
6
- metadata.gz: 8b8e7c71d76761ca29c57bdcfee4d41c585ce8b8fef60186e251689999a93354b2b9603bb9b3f0c6ec796f2478fbe1fcff172014793772e8f46628976c0b535f
7
- data.tar.gz: 1a68c451d9f716e7788ec72d9dc726383d9b9f3bd7a5b261997cf5ef60b75fe75632113f4cb549dbc699e053f24999f49056091ac7709f9890da6024f3495134
6
+ metadata.gz: cc04e62dbd75df48647371ac4c8b327ab6b2d443272138f6916b223dc51d2fffd61d92bbb29df9eb0571197a7840b79614aae1232ef5f1d51c74c52baedc4afd
7
+ data.tar.gz: 8e0d4156560ff6b9c9d1c910319eb7e5686d8b7c0574de338ef1e09e80a3fc02cdac8841460aea0a8b50aa55adac863e26eb99e9f4d70325080b4d85aea9763c
data/README.md CHANGED
@@ -2,6 +2,32 @@
2
2
 
3
3
  [Tailwind CSS](https://tailwindcss.com) is a utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.
4
4
 
5
+ <!-- regenerate TOC with `rake format:toc` -->
6
+
7
+ <!-- toc -->
8
+
9
+ - [Installation](#installation)
10
+ * [Using a local installation of `tailwindcss`](#using-a-local-installation-of-tailwindcss)
11
+ - [Developing with Tailwindcss](#developing-with-tailwindcss)
12
+ * [Configuration and commands](#configuration-and-commands)
13
+ * [Building for production](#building-for-production)
14
+ * [Building for testing](#building-for-testing)
15
+ * [Building unminified assets](#building-unminified-assets)
16
+ * [Live rebuild](#live-rebuild)
17
+ * [Using with PostCSS](#using-with-postcss)
18
+ * [Custom inputs or outputs](#custom-inputs-or-outputs)
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)
21
+ * [Running in a docker container exits prematurely](#running-in-a-docker-container-exits-prematurely)
22
+ * [Conflict with sassc-rails](#conflict-with-sassc-rails)
23
+ * [Class names must be spelled out](#class-names-must-be-spelled-out)
24
+ * [`ERROR: Cannot find the tailwindcss executable` for supported platform](#error-cannot-find-the-tailwindcss-executable-for-supported-platform)
25
+ * [Using asset-pipeline assets](#using-asset-pipeline-assets)
26
+ * [Conflict with pre-existing asset pipeline stylesheets](#conflict-with-pre-existing-asset-pipeline-stylesheets)
27
+ - [License](#license)
28
+
29
+ <!-- tocstop -->
30
+
5
31
  ## Installation
6
32
 
7
33
  With Rails 7 you can generate a new application preconfigured with Tailwind by using `--css tailwind`. If you're adding Tailwind later, you need to:
@@ -24,27 +50,56 @@ Supported platforms are:
24
50
 
25
51
  ### Using a local installation of `tailwindcss`
26
52
 
27
- If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a local installation of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory containing the executable.
53
+ If you are not able to use the vendored standalone executables (for example, if you're on an unsupported platform), you can use a local installation of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory path containing the executable.
28
54
 
29
- For example, if you've installed `tailwindcss` so that the executable is found at `/node_modules/bin/tailwindcss`, then you should set your environment variable like so:
55
+ For example, if you've installed `tailwindcss` so that the executable is found at `/path/to/node_modules/bin/tailwindcss`, then you should set your environment variable like so:
30
56
 
31
57
  ``` sh
32
58
  TAILWINDCSS_INSTALL_DIR=/path/to/node_modules/bin
33
59
  ```
34
60
 
35
- This also works with relative paths. If you've installed into your app's directory at `./node_modules/.bin/tailwindcss`:
61
+ or, for relative paths like `./node_modules/.bin/tailwindcss`:
36
62
 
37
63
  ``` sh
38
64
  TAILWINDCSS_INSTALL_DIR=node_modules/.bin
39
65
  ```
40
66
 
67
+
41
68
  ## Developing with Tailwindcss
42
69
 
43
- ### Configuration
70
+ ### Configuration and commands
71
+
72
+ #### Configuration file: `config/tailwind.config.js`
44
73
 
45
74
  You can customize the Tailwind build through the `config/tailwind.config.js` file, just like you would if Tailwind was running in a traditional node installation. All the first-party plugins are supported.
46
75
 
47
- The installer will create your Tailwind input file in `app/assets/stylesheets/application.tailwind.css`. This is where you import the plugins you want to use, and where you can setup your custom `@apply` rules. When you run `rails tailwindcss:build`, this input file will be used to generate the output in `app/assets/builds/tailwind.css`. That's the output CSS that you'll include in your app (the installer automatically configures this, alongside the Inter font as well).
76
+ #### Input file: `app/assets/stylesheets/application.tailwind.css`
77
+
78
+ The installer will generate a Tailwind input file in `app/assets/stylesheets/application.tailwind.css`. This is where you import the plugins you want to use, and where you can setup your custom `@apply` rules.
79
+
80
+ #### Output file: `app/assets/builds/tailwind.css`
81
+
82
+ When you run `rails tailwindcss:build`, the input file will be used to generate the output in `app/assets/builds/tailwind.css`. That's the output CSS that you'll include in your app (the installer automatically configures this, alongside the Inter font as well).
83
+
84
+ #### Commands
85
+
86
+ This gem makes several Rails tasks available, some of which have multiple options which can be combined.
87
+
88
+ Synopsis:
89
+
90
+ - `bin/rails tailwindcss:install` - installs the configuration file, output file, and `Procfile.dev`
91
+ - `bin/rails tailwindcss:build` - generate the output file
92
+ - `bin/rails tailwindcss:build[debug]` - generate unminimized output
93
+ - `bin/rails tailwindcss:watch` - start live rebuilds, generating output on file changes
94
+ - `bin/rails tailwindcss:watch[debug]` - generate unminimized output
95
+ - `bin/rails tailwindcss:watch[poll]` - for systems without file system events
96
+ - `bin/rails tailwindcss:watch[always]` - for systems without TTY (e.g., some docker containers)
97
+
98
+ Note that you can combine task options, e.g. `rails tailwindcss:watch[debug,poll]`.
99
+
100
+ This gem also makes available a Puma plugin to manage a live rebuild process when you run `rails server` (see "Live Rebuild" section below).
101
+
102
+ This gem also generates a `Procfile.dev` file which will run both the rails server and a live rebuild process (see "Live Rebuild" section below).
48
103
 
49
104
 
50
105
  ### Building for production
@@ -57,17 +112,23 @@ The `tailwindcss:build` is automatically attached to `assets:precompile`, so bef
57
112
  The `tailwindcss:build` task is automatically attached to the `test:prepare` Rake task. This task runs before test commands. If you run `bin/rails test` in your CI environment, your Tailwind output will be generated before tests run.
58
113
 
59
114
 
60
- ### Update assets automatically
115
+ ### Building unminified assets
116
+
117
+ If you want unminified assets, you can pass a `debug` argument to the rake task, i.e. `rails tailwindcss:build[debug]` or `rails tailwindcss:watch[debug]`.
118
+
119
+
120
+ ### Live rebuild
61
121
 
62
122
  While you're developing your application, you want to run Tailwind in "watch" mode, so changes are automatically reflected in the generated CSS output. You can do this in a few different ways:
63
123
 
64
- - use the [Puma](https://puma.io/) plugin to integrate "watch" with `rails server`, or
65
- - run `rails tailwindcss:watch` as a separate process, or
66
- - run `bin/dev` which uses [Foreman](https://github.com/ddollar/foreman)
124
+ - use this gem's [Puma](https://puma.io/) plugin to integrate "watch" with `rails server`,
125
+ - or run `rails tailwindcss:watch` as a separate process,
126
+ - or run `bin/dev` which uses [Foreman](https://github.com/ddollar/foreman)
127
+
67
128
 
68
129
  #### Puma plugin
69
130
 
70
- The Puma plugin requires you to add this line to your `puma.rb` configuration:
131
+ This gem ships with a Puma plugin. To use it, add this line to your `puma.rb` configuration:
71
132
 
72
133
  ```ruby
73
134
  plugin :tailwindcss if ENV.fetch("RAILS_ENV", "development") == "development"
@@ -80,7 +141,13 @@ and then running `rails server` will run the Tailwind watch process in the backg
80
141
 
81
142
  This is a flexible command, which can be run with a few different options.
82
143
 
83
- If you are running `rails tailwindcss:watch` on a system that doesn't fully support file system events, pass a `poll` argument to the task to instruct tailwindcss to instead use polling: `rails tailwindcss:watch[poll]`. If you use `bin/dev` then you should modify your `Procfile.dev`.
144
+ If you are running `rails tailwindcss:watch` on a system that doesn't fully support file system events, pass a `poll` argument to the task to instruct tailwindcss to instead use polling:
145
+
146
+ ```
147
+ rails tailwindcss:watch[poll]
148
+ ```
149
+
150
+ (If you use `bin/dev` then you should modify your `Procfile.dev` to use the `poll` option.)
84
151
 
85
152
  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.
86
153
 
@@ -92,13 +159,6 @@ If you are running `rails tailwindcss:watch` in a docker container without a tty
92
159
  Running `bin/dev` invokes Foreman to start both the Tailwind watch process and the rails server in development mode based on your `Procfile.dev` file.
93
160
 
94
161
 
95
- ### Debugging with unminified assets
96
-
97
- If you want unminified assets, you can pass a `debug` argument to the rake task, i.e. `rails tailwindcss:build[debug]` or `rails tailwindcss:watch[debug]`.
98
-
99
- Note that you can combine task options, e.g. `rails tailwindcss:watch[debug,poll]`.
100
-
101
-
102
162
  ### Using with PostCSS
103
163
 
104
164
  If you want to use PostCSS as a preprocessor, create a custom `config/postcss.config.js` and it will be loaded automatically.
@@ -126,6 +186,16 @@ If you need to use a custom input or output file, you can run `bundle exec tailw
126
186
 
127
187
  Some common problems experienced by users ...
128
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
+
193
+ ### Running in a docker container exits prematurely
194
+
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.
196
+
197
+ If you are running `rails tailwindcss:watch` in a docker container without a tty, pass the `always` argument to the task to instruct tailwindcss to keep the watcher alive even when `stdin` is closed: `rails tailwindcss:watch[always]`. If you use `bin/dev` then you should modify your `Procfile.dev`.
198
+
129
199
  ### Conflict with sassc-rails
130
200
 
131
201
  Tailwind uses modern CSS features that are not recognized by the `sassc-rails` extension that was included by default in the Gemfile for Rails 6. In order to avoid any errors like `SassC::SyntaxError`, you must remove that gem from your Gemfile.
@@ -134,7 +204,7 @@ Tailwind uses modern CSS features that are not recognized by the `sassc-rails` e
134
204
 
135
205
  For Tailwind to work, your class names need to be spelled out. If you need to make sure Tailwind generates class names that don't exist in your content files or that are programmatically composed, use the [safelist option](https://tailwindcss.com/docs/content-configuration#safelisting-classes).
136
206
 
137
- ### ERROR: Cannot find the tailwindcss executable for &lt;supported platform&gt;
207
+ ### `ERROR: Cannot find the tailwindcss executable` for supported platform
138
208
 
139
209
  Some users are reporting this error even when running on one of the supported native platforms:
140
210
 
@@ -172,24 +242,11 @@ and re-bundle.
172
242
  See https://bundler.io/man/bundle-config.1.html for more information.
173
243
 
174
244
 
175
- ### "No such file or directory" running on Alpine (musl)
176
-
177
- When running `tailwindcss` on an Alpine system, some users report a "No such file or directory" error message.
178
-
179
-
180
- #### Install gnu libc compatibility
181
-
182
- The cause of this is the upstream `tailwindcss` binary executables being built on a gnu libc system, making them incompatible with standard musl libc systems.
183
-
184
- A fix for this has been proposed upstream at https://github.com/tailwindlabs/tailwindcss/discussions/6785, but in the meantime a workaround is to install compatibility libraries:
185
-
186
- ``` sh
187
- apk add build-base gcompat
188
- ```
189
-
190
245
  ### Using asset-pipeline assets
191
246
 
192
- 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.
247
+ 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.
248
+
249
+ 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)` is rewritten to `/path/to/assets/image-7801e7538c6f1cc57aa75a5876ab0cac.svg` so output CSS will have the correct path to those assets.
193
250
 
194
251
  ```js
195
252
  module.exports = {
@@ -211,9 +268,14 @@ The inline version also works:
211
268
 
212
269
  ### Conflict with pre-existing asset pipeline stylesheets
213
270
 
214
- If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind’.` in the browser console after installation, you incorrectly double-process `application.tailwind.css`. This is a misconfiguration, even though the styles will be fully effective in many cases. The file `application.tailwind.css` is installed when running `rails tailwindcss:install` and is placed alongside the common `application.css` in `app/assets/stylesheets`. Because the `application.css` in a newly generated Rails app includes a `require_tree .` directive, the asset pipeline incorrectly processes `application.tailwind.css`, where it should be taken care of by `tailwindcss`. The asset pipeline ignores TailwindCSS's at-directives, and the browser can't process them.
271
+ If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind’.` in the browser console after installation, you are incorrectly double-processing `application.tailwind.css`. This is a misconfiguration, even though the styles will be fully effective in many cases.
272
+
273
+ The file `application.tailwind.css` is installed when running `rails tailwindcss:install` and is placed alongside the common `application.css` in `app/assets/stylesheets`. Because the `application.css` in a newly generated Rails app includes a `require_tree .` directive, the asset pipeline incorrectly processes `application.tailwind.css`, where it should be taken care of by `tailwindcss`. The asset pipeline ignores TailwindCSS's at-directives, and the browser can't process them.
274
+
275
+ To fix the warning, you can either remove the `application.css`, if you don't plan to use the asset pipeline for stylesheets, and instead rely on TailwindCSS completely for styles. This is what this installer assumes.
276
+
277
+ Or, if you do want to keep using the asset pipeline in parallel, make sure to remove the `require_tree .` line from the `application.css`.
215
278
 
216
- To fix the warning, you can either remove the `application.css`, if you don't plan to use the asset pipeline for stylesheets, and instead rely on TailwindCSS completely for styles. This is what this installer assumes. Else, if you do want to keep using the asset pipeline in parallel, make sure to remove the `require_tree .` line from the `application.css`.
217
279
 
218
280
  ## License
219
281
 
data/Rakefile CHANGED
@@ -12,3 +12,15 @@ Rake::TestTask.new(:test) do |t|
12
12
  end
13
13
 
14
14
  task default: :test
15
+
16
+ namespace "format" do
17
+ desc "Regenerate table of contents in README"
18
+ task "toc" do
19
+ require "mkmf"
20
+ if find_executable0("markdown-toc")
21
+ sh "markdown-toc --maxdepth=3 -i README.md"
22
+ else
23
+ puts "WARN: cannot find markdown-toc, skipping. install with 'npm install markdown-toc'"
24
+ end
25
+ end
26
+ end
@@ -15,23 +15,23 @@
15
15
  <div class="my-5">
16
16
  <% if attribute.password_digest? -%>
17
17
  <%%= form.label :password %>
18
- <%%= form.password_field :password, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
18
+ <%%= form.password_field :password, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
19
19
  </div>
20
20
 
21
21
  <div class="my-5">
22
22
  <%%= form.label :password_confirmation %>
23
- <%%= form.password_field :password_confirmation, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
23
+ <%%= form.password_field :password_confirmation, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
24
24
  <% elsif attribute.attachments? -%>
25
25
  <%%= form.label :<%= attribute.column_name %> %>
26
- <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, multiple: true, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
26
+ <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, multiple: true, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
27
27
  <% else -%>
28
28
  <%%= form.label :<%= attribute.column_name %> %>
29
29
  <% if attribute.field_type == :text_area -%>
30
- <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, rows: 4, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
30
+ <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, rows: 4, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
31
31
  <% elsif attribute.field_type == :check_box -%>
32
32
  <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block mt-2 h-5 w-5" %>
33
33
  <% else -%>
34
- <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block shadow rounded-md border border-gray-200 outline-none px-3 py-2 mt-2 w-full" %>
34
+ <%%= form.<%= attribute.field_type %> :<%= attribute.column_name %>, class: "block shadow rounded-md border border-gray-400 outline-none px-3 py-2 mt-2 w-full" %>
35
35
  <% end -%>
36
36
  <% end -%>
37
37
  </div>
@@ -3,6 +3,6 @@
3
3
 
4
4
  <%%= render "form", <%= singular_table_name %>: @<%= singular_table_name %> %>
5
5
 
6
- <%%= link_to "Show this <%= human_name.downcase %>", @<%= singular_table_name %>, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
7
- <%%= link_to "Back to <%= human_name.pluralize.downcase %>", <%= index_helper %>_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
6
+ <%%= link_to "Show this <%= human_name.downcase %>", <%= model_resource_name(prefix: "@") %>, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
7
+ <%%= link_to "Back to <%= human_name.pluralize.downcase %>", <%= index_helper(type: :path) %>, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
8
8
  </div>
@@ -3,12 +3,19 @@
3
3
  <p class="py-2 px-3 bg-green-50 mb-5 text-green-500 font-medium rounded-lg inline-block" id="notice"><%%= notice %></p>
4
4
  <%% end %>
5
5
 
6
+ <%% content_for :title, "<%= human_name.pluralize %>" %>
7
+
6
8
  <div class="flex justify-between items-center">
7
9
  <h1 class="font-bold text-4xl"><%= human_name.pluralize %></h1>
8
10
  <%%= link_to "New <%= human_name.downcase %>", new_<%= singular_route_name %>_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
9
11
  </div>
10
12
 
11
13
  <div id="<%= plural_table_name %>" class="min-w-full">
12
- <%%= render @<%= plural_table_name %> %>
14
+ <%% @<%= plural_table_name %>.each do |<%= singular_table_name %>| %>
15
+ <%%= render <%= singular_table_name %> %>
16
+ <p>
17
+ <%%= link_to "Show this <%= human_name.downcase %>", <%= model_resource_name(singular_table_name) %>, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
18
+ </p>
19
+ <%% end %>
13
20
  </div>
14
21
  </div>
@@ -3,5 +3,5 @@
3
3
 
4
4
  <%%= render "form", <%= singular_table_name %>: @<%= singular_table_name %> %>
5
5
 
6
- <%%= link_to "Back to <%= human_name.pluralize.downcase %>", <%= index_helper %>_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
6
+ <%%= link_to "Back to <%= human_name.pluralize.downcase %>", <%= index_helper(type: :path) %>, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
7
7
  </div>
@@ -14,9 +14,4 @@
14
14
  </p>
15
15
 
16
16
  <% end -%>
17
- <%% if action_name != "show" %>
18
- <%%= link_to "Show this <%= human_name.downcase %>", <%= singular_name %>, class: "rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
19
- <%%= link_to "Edit this <%= human_name.downcase %>", edit_<%= singular_name %>_path(<%= singular_name %>), class: "rounded-lg py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %>
20
- <hr class="mt-6">
21
- <%% end %>
22
17
  </div>
@@ -6,10 +6,10 @@
6
6
 
7
7
  <%%= render @<%= singular_table_name %> %>
8
8
 
9
- <%%= link_to "Edit this <%= singular_table_name %>", edit_<%= singular_table_name %>_path(@<%= singular_table_name %>), class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
9
+ <%%= link_to "Edit this <%= human_name.downcase %>", <%= edit_helper(type: :path) %>, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
10
+ <%%= link_to "Back to <%= human_name.pluralize.downcase %>", <%= index_helper %>_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
10
11
  <div class="inline-block ml-2">
11
- <%%= button_to "Destroy this <%= singular_table_name %>", <%= singular_table_name %>_path(@<%= singular_table_name %>), method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
12
+ <%%= button_to "Destroy this <%= human_name.downcase %>", <%= model_resource_name(prefix: "@") %>, method: :delete, class: "mt-2 rounded-lg py-3 px-5 bg-gray-100 font-medium" %>
12
13
  </div>
13
- <%%= link_to "Back to <%= plural_table_name %>", <%= index_helper %>_path, class: "ml-2 rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
14
14
  </div>
15
15
  </div>
@@ -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,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.4.1"
4
+ VERSION = "v3.4.3"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.3.0"
2
+ VERSION = "2.6.0"
3
3
  end
data/lib/tasks/build.rake CHANGED
@@ -15,6 +15,8 @@ namespace :tailwindcss do
15
15
  command = Tailwindcss::Commands.watch_command(always: always, debug: debug, poll: poll)
16
16
  puts command.inspect if args.extras.include?("verbose")
17
17
  system(*command)
18
+ rescue Interrupt
19
+ puts "Received interrupt, exiting tailwindcss:watch" if args.extras.include?("verbose")
18
20
  end
19
21
  end
20
22
 
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.3.0
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-10 00:00:00.000000000 Z
11
+ date: 2024-05-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -16,16 +16,16 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 6.0.0
19
+ version: 7.0.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: 6.0.0
26
+ version: 7.0.0
27
27
  force_ruby_platform: false
28
- description:
28
+ description:
29
29
  email: david@loudthinking.com
30
30
  executables:
31
31
  - tailwindcss
@@ -87,7 +87,7 @@ licenses:
87
87
  metadata:
88
88
  homepage_uri: https://github.com/rails/tailwindcss-rails
89
89
  rubygems_mfa_required: 'true'
90
- post_install_message:
90
+ post_install_message:
91
91
  rdoc_options: []
92
92
  require_paths:
93
93
  - lib
@@ -102,8 +102,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
102
102
  - !ruby/object:Gem::Version
103
103
  version: 3.2.0
104
104
  requirements: []
105
- rubygems_version: 3.4.19
106
- signing_key:
105
+ rubygems_version: 3.5.9
106
+ signing_key:
107
107
  specification_version: 4
108
108
  summary: Integrate Tailwind CSS with the asset pipeline in Rails.
109
109
  test_files: []