tailwindcss-rails 2.3.0-x86_64-linux → 2.4.1-x86_64-linux
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +106 -37
- data/Rakefile +12 -0
- data/exe/x86_64-linux/tailwindcss +0 -0
- data/lib/puma/plugin/tailwindcss.rb +6 -1
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- data/lib/tasks/build.rake +2 -0
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 41c9dad0d467dad11e982fa4b4c90344b7134440dadda6b8593189eaf437e7a0
|
4
|
+
data.tar.gz: 7f765131b1b1324cf4000df43655541dfeb52ee28e31cd1247829cd91d8a61c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f6168810c4fa989f097e3f0575c558a1deb7349068554aab08dfaaf96e5f1538a3a53c6cc1c019d0394a1882ec48b7e971dad9f4ccada539f2855bbfe4f1daf8
|
7
|
+
data.tar.gz: 2238c96d43798460c094b912a606773682e9ebafda67a7400ef573741c2699da9e2f486f7b17bdce86faf2b098b3bedd78b69d4cbe4dd7feb1f324749f95d0f6
|
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
|
-
|
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
|
-
|
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
|
-
###
|
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
|
65
|
-
- run `rails tailwindcss:watch` as a separate process,
|
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
|
-
|
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:
|
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,23 @@ 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 `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
|
+
|
200
|
+
### Running in a docker container exits prematurely
|
201
|
+
|
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.
|
203
|
+
|
204
|
+
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`.
|
205
|
+
|
129
206
|
### Conflict with sassc-rails
|
130
207
|
|
131
208
|
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 +211,7 @@ Tailwind uses modern CSS features that are not recognized by the `sassc-rails` e
|
|
134
211
|
|
135
212
|
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
213
|
|
137
|
-
### ERROR: Cannot find the tailwindcss executable for
|
214
|
+
### `ERROR: Cannot find the tailwindcss executable` for supported platform
|
138
215
|
|
139
216
|
Some users are reporting this error even when running on one of the supported native platforms:
|
140
217
|
|
@@ -172,24 +249,11 @@ and re-bundle.
|
|
172
249
|
See https://bundler.io/man/bundle-config.1.html for more information.
|
173
250
|
|
174
251
|
|
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
252
|
### Using asset-pipeline assets
|
191
253
|
|
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.
|
254
|
+
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.
|
255
|
+
|
256
|
+
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
257
|
|
194
258
|
```js
|
195
259
|
module.exports = {
|
@@ -211,9 +275,14 @@ The inline version also works:
|
|
211
275
|
|
212
276
|
### Conflict with pre-existing asset pipeline stylesheets
|
213
277
|
|
214
|
-
If you get a warning `Unrecognized at-rule or error parsing at-rule ‘@tailwind’.` in the browser console after installation, you incorrectly double-
|
278
|
+
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.
|
279
|
+
|
280
|
+
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.
|
281
|
+
|
282
|
+
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.
|
283
|
+
|
284
|
+
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
285
|
|
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
286
|
|
218
287
|
## License
|
219
288
|
|
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
|
Binary file
|
@@ -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/upstream.rb
CHANGED
data/lib/tailwindcss/version.rb
CHANGED
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.
|
4
|
+
version: 2.4.1
|
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: 2024-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -25,7 +25,7 @@ dependencies:
|
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: 6.0.0
|
27
27
|
force_ruby_platform: false
|
28
|
-
description:
|
28
|
+
description:
|
29
29
|
email: david@loudthinking.com
|
30
30
|
executables:
|
31
31
|
- tailwindcss
|
@@ -89,7 +89,7 @@ licenses:
|
|
89
89
|
metadata:
|
90
90
|
homepage_uri: https://github.com/rails/tailwindcss-rails
|
91
91
|
rubygems_mfa_required: 'true'
|
92
|
-
post_install_message:
|
92
|
+
post_install_message:
|
93
93
|
rdoc_options: []
|
94
94
|
require_paths:
|
95
95
|
- lib
|
@@ -104,8 +104,8 @@ 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.
|
108
|
-
signing_key:
|
107
|
+
rubygems_version: 3.5.9
|
108
|
+
signing_key:
|
109
109
|
specification_version: 4
|
110
110
|
summary: Integrate Tailwind CSS with the asset pipeline in Rails.
|
111
111
|
test_files: []
|