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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d5cde80b77b9f1ab89a965a95913d5b419165dd225e61b1e17e673e9a77cf49a
4
- data.tar.gz: 041f2c8f486086f95123cb23f1a94be72fa4fa31246cf2a6f5cbc1c452354931
3
+ metadata.gz: f7ebf0e21eb370697b5ac0f41a6e6b98b2cfd28ecd129bced7cd6f7ffc2df2c6
4
+ data.tar.gz: 7820c4a0dff699b7a17eae3275247bf9d209040f16fcd7f09ff072bc0e834745
5
5
  SHA512:
6
- metadata.gz: 59bbb139595a1ed89ca664849155d6a170a1dbdf1f6190c8810260330d8011c0c08a7a0622bc43c5d4199fbd0ef63de440a30def0acc16b7830cb5dd1e08a1e8
7
- data.tar.gz: 8a413d355e8929693a7dbce283d7b58db0c5cbf3d6950aeea0c1c53571459c66e5bc01f3b066588a11b77a69ab51fd60e05fea5887772ad304ff52cf2c21205e
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. 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.)
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
@@ -18,7 +18,6 @@ module.exports = {
18
18
  require('@tailwindcss/forms'),
19
19
  require('@tailwindcss/aspect-ratio'),
20
20
  require('@tailwindcss/typography'),
21
- require('@tailwindcss/line-clamp'),
22
21
  require('@tailwindcss/container-queries'),
23
22
  ]
24
23
  }
@@ -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
- exe_path: File.expand_path(File.join(__dir__, "..", "..", "exe"))
20
- )
21
- if Tailwindcss::Upstream::NATIVE_PLATFORMS.keys.none? { |p| Gem::Platform.match(Gem::Platform.new(p)) }
22
- raise UnsupportedPlatformException, <<~MESSAGE
23
- tailwindcss-rails does not support the #{platform} platform
24
- Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
25
- MESSAGE
26
- end
27
-
28
- exe_path = Dir.glob(File.expand_path(File.join(exe_path, "*", "tailwindcss"))).find do |f|
29
- Gem::Platform.match(Gem::Platform.new(File.basename(File.dirname(f))))
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 exe_path.nil?
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
- exe_path
72
+ exe_file
56
73
  end
57
74
 
58
75
  def compile_command(debug: false, **kwargs)
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.2.7"
4
+ VERSION = "v3.3.0"
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.0.25"
2
+ VERSION = "2.0.26"
3
3
  end
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.25
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-14 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties