Skip to content

Commit 251ff22

Browse files
authored
Merge pull request #199 from rails/flavorjones-allow-polling
feat: support polling for watching files
2 parents 1c6a32d + bf09205 commit 251ff22

File tree

5 files changed

+57
-19
lines changed

5 files changed

+57
-19
lines changed

CHANGELOG.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
## Unreleased
33

44
* Correctly handle paths with embedded spaces. [#184](https://github.com/rails/tailwindcss-rails/issues/184) by [@flavorjones](https://github.com/flavorjones)
5-
* Rake tasks accept a `debug` argument to generate unminified assets, e.g. `tailwindcss:build[debug]`. [#198](https://github.com/rails/tailwindcss-rails/pull/198) by [@flavorjones](https://github.com/flavorjones)
5+
* The `build` and `watch` tasks accept a `debug` argument to generate unminified assets: `rails tailwindcss:build[debug]` or `rails tailwindcss:watch[debug]`. [#198](https://github.com/rails/tailwindcss-rails/pull/198) by [@flavorjones](https://github.com/flavorjones)
6+
* The `watch` task accepts a `poll` argument to use polling instead of file system events: `rails tailwindcss:watch[poll]`. [#199](https://github.com/rails/tailwindcss-rails/pull/199) by [@flavorjones](https://github.com/flavorjones)
67

78

89
## v2.0.12 / 2022-08-10

README.md

+39-15
Original file line numberDiff line numberDiff line change
@@ -2,47 +2,71 @@
22

33
[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.
44

5+
## Installation
6+
7+
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:
8+
9+
1. Run `./bin/bundle add tailwindcss-rails`
10+
2. Run `./bin/rails tailwindcss:install`
11+
512
This gem wraps [the standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS v3 framework. These executables are platform specific, so there are actually separate underlying gems per platform, but the correct gem will automatically be picked for your platform. Supported platforms are Linux x64, macOS arm64, macOS x64, and Windows x64. (Note that due to this setup, you must install the actual gems – you can't pin your gem to the github repo.)
613

14+
15+
## Developing with Tailwindcss
16+
17+
### Configuration
18+
719
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.
820

921
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).
1022

11-
**If you need to use a custom input or output file**, you can run `bundle exec tailwindcss` to access the platform-specific executable, and give it your own build options.
1223

13-
**When 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 either by running `rails tailwindcss:watch` as a separate process, or by running `./bin/dev` which uses [foreman](https://github.com/ddollar/foreman) to starts both the Tailwind watch process and the rails server in development mode. 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.
24+
### Building for production
1425

15-
**If you want unminified assets**, you can pass the `debug` parameter to the rake task, i.e. `rails tailwindcss:build[debug]` or `rails tailwindcss:watch[debug]`.
26+
The `tailwindcss:build` is automatically attached to `assets:precompile`, so before the asset pipeline digests the files, the Tailwind output will be generated.
1627

1728

18-
## Installation
29+
### Building for testing
1930

20-
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:
31+
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`).
2132

22-
1. Run `./bin/bundle add tailwindcss-rails`
23-
2. Run `./bin/rails tailwindcss:install`
2433

34+
### Update assets automatically
2535

26-
## Building in production
36+
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 by:
2737

28-
The `tailwindcss:build` is automatically attached to `assets:precompile`, so before the asset pipeline digests the files, the Tailwind output will be generated.
38+
- running `rails tailwindcss:watch` as a separate process,
39+
- or by running `./bin/dev` which uses [foreman](https://github.com/ddollar/foreman) to start both the Tailwind watch process and the rails server in development mode.
2940

30-
## Building for testing
41+
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.
3142

32-
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`).
43+
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`.
3344

34-
## Conflict with sassc-rails
3545

36-
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.
46+
### Debugging with unminified assets
3747

38-
## Class names must be spelled out
48+
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]`.
49+
50+
Note that you can combine task options, e.g. `rails tailwindcss:watch[debug,poll]`.
51+
52+
53+
### Custom inputs or outputs
54+
55+
If you need to use a custom input or output file, you can run `bundle exec tailwindcss` to access the platform-specific executable, and give it your own build options.
3956

40-
For Tailwind to work, your class names need to be spelled out. They can't be programmatically composed. So no "text-gray-#{grade}", only "text-gray-500".
4157

4258
## Troubleshooting
4359

4460
Some common problems experienced by users ...
4561

62+
### Conflict with sassc-rails
63+
64+
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.
65+
66+
### Class names must be spelled out
67+
68+
For Tailwind to work, your class names need to be spelled out. They can't be programmatically composed. So no "text-gray-#{grade}", only "text-gray-500".
69+
4670
### ERROR: Cannot find the tailwindcss executable for <supported platform>
4771

4872
Some users are reporting this error even when running on one of the supported native platforms:

lib/tailwindcss/commands.rb

+5-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@ def compile_command(debug: false, **kwargs)
6666
end
6767
end
6868

69-
def watch_command(**kwargs)
70-
compile_command(**kwargs) << "-w"
69+
def watch_command(poll: false, **kwargs)
70+
compile_command(**kwargs).tap do |command|
71+
command << "-w"
72+
command << "-p" if poll
73+
end
7174
end
7275
end
7376
end

lib/tasks/build.rake

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ namespace :tailwindcss do
1010
desc "Watch and build your Tailwind CSS on file changes"
1111
task :watch do |_, args|
1212
debug = args.extras.include?("debug")
13-
command = Tailwindcss::Commands.watch_command(debug: debug)
13+
poll = args.extras.include?("poll")
14+
command = Tailwindcss::Commands.watch_command(debug: debug, poll: poll)
1415
puts command.inspect
1516
system(*command)
1617
end

test/lib/tailwindcss/commands_test.rb

+9
Original file line numberDiff line numberDiff line change
@@ -65,13 +65,22 @@ def mock_exe_directory(platform)
6565
assert_kind_of(Array, actual)
6666
assert_equal(executable, actual.first)
6767
assert_includes(actual, "-w")
68+
refute_includes(actual, "-p")
6869
assert_includes(actual, "--minify")
6970

7071
actual = Tailwindcss::Commands.watch_command(exe_path: dir, debug: true)
7172
assert_kind_of(Array, actual)
7273
assert_equal(executable, actual.first)
7374
assert_includes(actual, "-w")
75+
refute_includes(actual, "-p")
7476
refute_includes(actual, "--minify")
77+
78+
actual = Tailwindcss::Commands.watch_command(exe_path: dir, poll: true)
79+
assert_kind_of(Array, actual)
80+
assert_equal(executable, actual.first)
81+
assert_includes(actual, "-w")
82+
assert_includes(actual, "-p")
83+
assert_includes(actual, "--minify")
7584
end
7685
end
7786
end

0 commit comments

Comments
 (0)