tailwindcss-ruby 3.4.17-arm64-darwin → 4.0.0.alpha.25-arm64-darwin

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: 0aa2e5908642899fb3e5b82357a3cb7c69bf5081fa910cf82b0db54974fb314c
4
- data.tar.gz: 0c6ac640dae0846054250a96ed5d034d1c8e57ca133428a3320acb3faac9c91b
3
+ metadata.gz: c30c12a0b1cb95492981c6631577a1eaa2fcffcf0ec65ed8d08ffbcba5ae6580
4
+ data.tar.gz: 35bb328cea1f55b44a53dd27c44b8932719998f8b934e7d9f78aec61e8cb86d5
5
5
  SHA512:
6
- metadata.gz: a47a0a4f0546e50db89150e75ac2579a167d3e8f6147c5b5f1715dda86bd2e63c572361e1589a0bdf6cc3cce439c200128697c93544b8704099799f73993eebf
7
- data.tar.gz: 44151b504e71a42253aec18c85becc01196b60eeeba7865d1237c902c83bff373bb45fc7dd45d31cdec2e3b0f55298a868af893249953209eb85e9d4686ebadc
6
+ metadata.gz: e8a6b9911079cdd2a00be855d3486f6c9026c596f6215ea969db380923c46df0bf61d6917bff4242e7421d0457ea05c98865d71404e622cf27a4ffca015238c2
7
+ data.tar.gz: e59671777bffa392a8df0cef30bbb82f31c638244e4981945d3e401a2888ae5b2921b981dc5896ac9d6b475b759e8f50ad821cb7217f1f3fda4a6199820d1ab1
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
 
Binary file
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,14 +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: arm64-darwin
6
6
  authors:
7
7
  - Mike Dalessio
8
8
  - David Heinemeier Hansson
9
+ autorequire:
9
10
  bindir: exe
10
11
  cert_chain: []
11
- date: 2024-12-18 00:00:00.000000000 Z
12
+ date: 2024-09-27 00:00:00.000000000 Z
12
13
  dependencies: []
13
14
  description: A self-contained `tailwindcss` executable, wrapped up in a ruby gem.
14
15
  That's it. Nothing else.
@@ -35,6 +36,7 @@ metadata:
35
36
  source_code_uri: https://github.com/flavorjones/tailwindcss-ruby
36
37
  changelog_uri: https://github.com/flavorjones/tailwindcss-ruby/blob/main/CHANGELOG.md
37
38
  rubygems_mfa_required: 'true'
39
+ post_install_message:
38
40
  rdoc_options: []
39
41
  require_paths:
40
42
  - lib
@@ -49,7 +51,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
51
  - !ruby/object:Gem::Version
50
52
  version: '0'
51
53
  requirements: []
52
- rubygems_version: 3.6.0
54
+ rubygems_version: 3.5.16
55
+ signing_key:
53
56
  specification_version: 4
54
57
  summary: A self-contained `tailwindcss` executable.
55
58
  test_files: []