tailwindcss-ruby 3.4.17 → 4.0.0.alpha.25

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2981b1b1185b61efa566b706cd74ef8626835f9405c59cd40e8d7e32b8dc7a41
4
- data.tar.gz: '08bf9c31049409d9847f934bb77efa6cbf6e0279cc794eb9fe1780c0fc5ee809'
3
+ metadata.gz: d4ec44144e12567a2cf507533098cc45cf7501378c986439e8d199cdf1831d9d
4
+ data.tar.gz: ce1d6e4013cb708493be798ca3816c473aa4a62a39df0a369268ef77310120ad
5
5
  SHA512:
6
- metadata.gz: 6f9061c78cdbdbd736faefc9553a01ecd45a8ec8f703708e1f4bca2662de5d9ceef2f5a348f2fbfa30d25a84a4679ba24c5001a16513c588db474db4c564f3c2
7
- data.tar.gz: dc1585930182637bbc6a548deebdc6a6bebe490fd7777f616888cd2d5cc26ebe1aacd78bd23c05661208b7274dc273a9a30803aee193c9c820e1c5c80db99758
6
+ metadata.gz: 4ecdbd1c77e5ae962166ccf1a9f916795fd98ffe99c22b37caa478822c8d9db291a1e970d53120bd84b5506a2515e87bfc32189f391e1ecd2c0274ecfff25a2e
7
+ data.tar.gz: fc75fe450fa6344136f4867b696aeb27cc7d2da8a390d3ab71734a5a6c3f559f5bad18fbbc2ce4c3bb17c88b65367037c2ee61a763a20a574adbbb72e50db9b1
data/README.md CHANGED
@@ -33,9 +33,7 @@ gem install tailwindcss-ruby
33
33
 
34
34
  ### Using a local installation of `tailwindcss`
35
35
 
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.
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.
39
37
 
40
38
  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:
41
39
 
data/exe/tailwindcss CHANGED
@@ -14,6 +14,6 @@ begin
14
14
  exec(*command)
15
15
  end
16
16
  rescue Tailwindcss::Ruby::UnsupportedPlatformException, Tailwindcss::Ruby::ExecutableNotFoundException => e
17
- warn("ERROR: " + e.message)
17
+ STDERR.puts("ERROR: " + e.message)
18
18
  exit 1
19
19
  end
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  module Ruby
3
3
  module Upstream
4
- VERSION = "v3.4.17"
4
+ VERSION = "v4.0.0-alpha.25"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -11,7 +11,7 @@ module Tailwindcss
11
11
  "x86_64-darwin" => "tailwindcss-macos-x64",
12
12
  "x86_64-linux" => "tailwindcss-linux-x64",
13
13
  "aarch64-linux" => "tailwindcss-linux-arm64",
14
- "arm-linux" => "tailwindcss-linux-armv7"
14
+ # "arm-linux" => "tailwindcss-linux-armv7",
15
15
  }
16
16
  end
17
17
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tailwindcss
4
4
  module Ruby
5
- VERSION = "3.4.17"
5
+ VERSION = "4.0.0.alpha.25"
6
6
  end
7
7
  end
@@ -41,8 +41,7 @@ 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
- See https://github.com/flavorjones/tailwindcss-ruby#using-a-local-installation-of-tailwindcss
45
- for more details.
44
+ Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
46
45
  MESSAGE
47
46
  end
48
47
 
metadata CHANGED
@@ -1,15 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.4.17
4
+ version: 4.0.0.alpha.25
5
5
  platform: ruby
6
- original_platform: ''
7
6
  authors:
8
7
  - Mike Dalessio
9
8
  - David Heinemeier Hansson
9
+ autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2024-12-18 00:00:00.000000000 Z
12
+ date: 2024-09-27 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.
@@ -35,6 +35,7 @@ metadata:
35
35
  source_code_uri: https://github.com/flavorjones/tailwindcss-ruby
36
36
  changelog_uri: https://github.com/flavorjones/tailwindcss-ruby/blob/main/CHANGELOG.md
37
37
  rubygems_mfa_required: 'true'
38
+ post_install_message:
38
39
  rdoc_options: []
39
40
  require_paths:
40
41
  - lib
@@ -49,7 +50,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
50
  - !ruby/object:Gem::Version
50
51
  version: '0'
51
52
  requirements: []
52
- rubygems_version: 3.6.0
53
+ rubygems_version: 3.5.16
54
+ signing_key:
53
55
  specification_version: 4
54
56
  summary: A self-contained `tailwindcss` executable.
55
57
  test_files: []