tailwindcss-ruby 3.4.17-x64-mingw-ucrt → 4.0.0.alpha.25-x64-mingw-ucrt

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: 9a08f03cf0d220dcea168ccd697c968404938e862a7a578c5fd9a5d75f045a40
4
- data.tar.gz: e28a39fa0538fc782199239d454291620e5dc9246c62025a0a14dfd8733d8017
3
+ metadata.gz: 907d62fe0d4150bc8fe1c3e7ccf8fc20e881f716e510cd50612cdb67bc68e1db
4
+ data.tar.gz: a7b31f24fe3f611d8ffaabdd0a451256a197918a2530fdf77ec74c28f12bfec3
5
5
  SHA512:
6
- metadata.gz: fbd734161397af8e07fc4a04d99efd07626f18498c543c2238520db835db5ae3ac0fb3b02d49904be4762b6a4c1c85ed56a6ebe6c80823785bac77aef3afcbf3
7
- data.tar.gz: fa526c928a92a72be53447ae8dac6fa408615c5cb3d43083482fe481fbdeb72ef41a10a81c9776750e3bb0f055b715deedb34b41558eafb769f2f813c0e82bdc
6
+ metadata.gz: 4e6df6923fdb1857ef86115e5b9a6a8755de6528202c6e44c8f6668381dc3f6327fc5e206461d35fd868da081018589635b78b4bda4c5a3c7703b6f2899851e7
7
+ data.tar.gz: c240ad87c309c78d563b21822cfffc9f6a5dcf24b494ac8f1c6ebafe8e74966b806170fe6862defcec8ae2013891fd846f60a35f2464c9e6c25dde79a543da62
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
Binary file
@@ -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: x64-mingw-ucrt
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: []