tailwindcss-ruby 3.4.15 → 3.4.16

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: 1876b6378e2929470307b623c252dad24b99f90ca37a7be194bbe70ecf24e5c6
4
- data.tar.gz: 2ee5bc40a72c6234df39f4a91425fbd7b6cc39e8682ccc7f6f621411098e16f7
3
+ metadata.gz: 8bd5a8634cd3619ed9f8300f38f9a83fcb1d3d722b7d6dbc7aa4b6f84902edb1
4
+ data.tar.gz: 05eaefed77dffcb6d4f014b3ee7094b4a4812ba21dbf3ee6bd29463ec1a01615
5
5
  SHA512:
6
- metadata.gz: ef0636da0fc0b323d4556897d317b6e40969301734e1b5008eba8e6c6d61b47991d5799a58f904a0c1b4fa5eb2ff08130d23bd1682bfbffa35bf2cf444d754ec
7
- data.tar.gz: 29fcbf6c80e713e3d1dde1987cc10d78a92486d360272b39eeb99bac823a33f7c12db70fe75043c6be0f569fd3425ef3c586573a93f5f0a5d3bfa54f02ff3579
6
+ metadata.gz: 62ebc39b7ad41db185a39c54071fceadf03643720dbbcfd578aaca492dc25bdd0976a879282aa8b9409e2256890623e1618f4396acdb3391d4e459af12509dd6
7
+ data.tar.gz: 57753fc45aa677ee8dc7479811e8937a84cdfe641c71a79e01339783ccb1b6cd7bd8d02ca89b7dc85321b9a1b3a4416e1e57d99bec3d2b115448a764ce2fdbc6
data/README.md CHANGED
@@ -33,7 +33,9 @@ gem install tailwindcss-ruby
33
33
 
34
34
  ### Using a local installation of `tailwindcss`
35
35
 
36
- 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.
36
+ <!-- note that this section's title is deeplinked from an error message, do not change -->
37
+
38
+ 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](https://tailwindcss.com/docs/installation) of the `tailwindcss` executable by setting an environment variable named `TAILWINDCSS_INSTALL_DIR` to the directory path containing the executable.
37
39
 
38
40
  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:
39
41
 
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  module Ruby
3
3
  module Upstream
4
- VERSION = "v3.4.15"
4
+ VERSION = "v3.4.16"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tailwindcss
4
4
  module Ruby
5
- VERSION = "3.4.15"
5
+ VERSION = "3.4.16"
6
6
  end
7
7
  end
@@ -41,7 +41,8 @@ module Tailwindcss
41
41
  if Tailwindcss::Ruby::Upstream::NATIVE_PLATFORMS.keys.none? { |p| Gem::Platform.match_gem?(Gem::Platform.new(p), GEM_NAME) }
42
42
  raise UnsupportedPlatformException, <<~MESSAGE
43
43
  #{GEM_NAME} does not support the #{platform} platform
44
- Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
44
+ See https://github.com/flavorjones/tailwindcss-ruby#using-a-local-installation-of-tailwindcss
45
+ for more details.
45
46
  MESSAGE
46
47
  end
47
48
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.15
4
+ version: 3.4.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-11-15 00:00:00.000000000 Z
12
+ date: 2024-12-04 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: A self-contained `tailwindcss` executable, wrapped up in a ruby gem.
15
15
  That's it. Nothing else.