tailwindcss-rails 2.0.25-x86_64-linux → 2.0.26-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 +28 -1
- data/exe/x86_64-linux/tailwindcss +0 -0
- 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: '0778ae115ffe1426859b1d79fadd7d1a3a8043a337ab3015e496e7468878fbb5'
|
4
|
+
data.tar.gz: d77c259ef5ca70cce45c857060db9084a14e593deda871fdf3939be2ff69dc82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e958684d7881175efb9ad5a13e695c3037830142b729031537c6941bc06d399739d846f868c7b9e429209b0cf1f119b8ef0ef6b7316bc0090e4006dae86f9889
|
7
|
+
data.tar.gz: ae59d9cdb71955e9cb3f62f5d188aac8c41fad1808fd59d4210f538a6e7ca9a051921d5255401e15295dd53c378122ae03381255ed00318645fce0072288a2c4
|
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
|
Binary file
|
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: x86_64-linux
|
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
|