tailwindcss-rails 2.0.25 → 2.0.26
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +28 -1
- data/lib/install/tailwind.config.js +0 -1
- data/lib/tailwindcss/commands.rb +31 -14
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f7ebf0e21eb370697b5ac0f41a6e6b98b2cfd28ecd129bced7cd6f7ffc2df2c6
|
4
|
+
data.tar.gz: 7820c4a0dff699b7a17eae3275247bf9d209040f16fcd7f09ff072bc0e834745
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07d9b2e5d5c43002d52cafc568befaee7fc9c44507b19abf86ad3c662dd358738004150d4d2bb23c40ee8eadd6b62dddcddbefca3ffdc8b2818e3d79c445594e
|
7
|
+
data.tar.gz: 8805446ec57cdda294a764df47ecdf36aa8e71162d0df06c92904174887decb0c7ebcfccca97a385cd554fd27de9cbc1030902f1b76729c2710eabb4d898d10b
|
data/README.md
CHANGED
@@ -9,7 +9,34 @@ With Rails 7 you can generate a new application preconfigured with Tailwind by u
|
|
9
9
|
1. Run `./bin/bundle add tailwindcss-rails`
|
10
10
|
2. Run `./bin/rails tailwindcss:install`
|
11
11
|
|
12
|
-
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.
|
12
|
+
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.
|
13
|
+
|
14
|
+
Supported platforms are:
|
15
|
+
|
16
|
+
- arm64-darwin (macos-arm64)
|
17
|
+
- x64-mingw32 (windows-x64)
|
18
|
+
- x64-mingw-ucr (windows-x64)
|
19
|
+
- x86_64-darwin (macos-x64)
|
20
|
+
- x86_64-linux (linux-x64)
|
21
|
+
- aarch64-linux (linux-arm64)
|
22
|
+
- arm-linux (linux-armv7)
|
23
|
+
|
24
|
+
|
25
|
+
### Using a local installation of `tailwindcss`
|
26
|
+
|
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.
|
28
|
+
|
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:
|
30
|
+
|
31
|
+
``` sh
|
32
|
+
TAILWINDCSS_INSTALL_DIR=/path/to/node_modules/bin
|
33
|
+
```
|
34
|
+
|
35
|
+
This also works with relative paths. If you've installed into your app's directory at `./node_modules/.bin/tailwindcss`:
|
36
|
+
|
37
|
+
``` sh
|
38
|
+
TAILWINDCSS_INSTALL_DIR=node_modules/.bin
|
39
|
+
```
|
13
40
|
|
14
41
|
|
15
42
|
## Developing with Tailwindcss
|
data/lib/tailwindcss/commands.rb
CHANGED
@@ -2,6 +2,8 @@ require_relative "upstream"
|
|
2
2
|
|
3
3
|
module Tailwindcss
|
4
4
|
module Commands
|
5
|
+
DEFAULT_DIR = File.expand_path(File.join(__dir__, "..", "..", "exe"))
|
6
|
+
|
5
7
|
# raised when the host platform is not supported by upstream tailwindcss's binary releases
|
6
8
|
class UnsupportedPlatformException < StandardError
|
7
9
|
end
|
@@ -10,26 +12,41 @@ module Tailwindcss
|
|
10
12
|
class ExecutableNotFoundException < StandardError
|
11
13
|
end
|
12
14
|
|
15
|
+
# raised when TAILWINDCSS_INSTALL_DIR does not exist
|
16
|
+
class DirectoryNotFoundException < StandardError
|
17
|
+
end
|
18
|
+
|
13
19
|
class << self
|
14
20
|
def platform
|
15
21
|
[:cpu, :os].map { |m| Gem::Platform.local.send(m) }.join("-")
|
16
22
|
end
|
17
23
|
|
18
|
-
def executable(
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
24
|
+
def executable(exe_path: DEFAULT_DIR)
|
25
|
+
tailwindcss_install_dir = ENV["TAILWINDCSS_INSTALL_DIR"]
|
26
|
+
if tailwindcss_install_dir
|
27
|
+
if File.directory?(tailwindcss_install_dir)
|
28
|
+
warn "NOTE: using TAILWINDCSS_INSTALL_DIR to find tailwindcss executable: #{tailwindcss_install_dir}"
|
29
|
+
exe_path = tailwindcss_install_dir
|
30
|
+
exe_file = File.expand_path(File.join(tailwindcss_install_dir, "tailwindcss"))
|
31
|
+
else
|
32
|
+
raise DirectoryNotFoundException, <<~MESSAGE
|
33
|
+
TAILWINDCSS_INSTALL_DIR is set to #{tailwindcss_install_dir}, but that directory does not exist.
|
34
|
+
MESSAGE
|
35
|
+
end
|
36
|
+
else
|
37
|
+
if Tailwindcss::Upstream::NATIVE_PLATFORMS.keys.none? { |p| Gem::Platform.match(Gem::Platform.new(p)) }
|
38
|
+
raise UnsupportedPlatformException, <<~MESSAGE
|
39
|
+
tailwindcss-rails does not support the #{platform} platform
|
40
|
+
Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
|
41
|
+
MESSAGE
|
42
|
+
end
|
43
|
+
|
44
|
+
exe_file = Dir.glob(File.expand_path(File.join(exe_path, "*", "tailwindcss"))).find do |f|
|
45
|
+
Gem::Platform.match(Gem::Platform.new(File.basename(File.dirname(f))))
|
46
|
+
end
|
30
47
|
end
|
31
48
|
|
32
|
-
if
|
49
|
+
if exe_file.nil? || !File.exist?(exe_file)
|
33
50
|
raise ExecutableNotFoundException, <<~MESSAGE
|
34
51
|
Cannot find the tailwindcss executable for #{platform} in #{exe_path}
|
35
52
|
|
@@ -52,7 +69,7 @@ module Tailwindcss
|
|
52
69
|
MESSAGE
|
53
70
|
end
|
54
71
|
|
55
|
-
|
72
|
+
exe_file
|
56
73
|
end
|
57
74
|
|
58
75
|
def compile_command(debug: false, **kwargs)
|
data/lib/tailwindcss/upstream.rb
CHANGED
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.0.
|
4
|
+
version: 2.0.26
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-03-
|
11
|
+
date: 2023-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|