tailwindcss-ruby 4.0.0.beta.10-aarch64-linux-gnu → 4.0.1-aarch64-linux-gnu
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +15 -1
- data/exe/aarch64-linux-gnu/tailwindcss +0 -0
- data/lib/tailwindcss/ruby/upstream.rb +1 -1
- data/lib/tailwindcss/ruby/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5062ecc13ed7cdf1147bc4a081780587f7f4532221734b7569f922646891c2af
|
4
|
+
data.tar.gz: a1b007f7e5d3fa808127716dcc61cdfbe4f3d68ca798f6349247d621a2e9bd4d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 75fe7145e24fdf0eef253f1c7618e5b88602479f3b2e2f656d9820d86bb78c8255bde19d169f506a9720c74367d8573d4bb0d3a2bd63a0bf0b9616f4000aa44a
|
7
|
+
data.tar.gz: e30298bf23a4ae4474a64eed5746802d899443913ef29ce4c0601ffa337b12cc16c3cfb7810fa7a223728eeee13984d2b3928862cdd794a0c97285182afff325
|
data/README.md
CHANGED
@@ -5,9 +5,23 @@ A self-contained `tailwindcss` executable, wrapped up in a ruby gem. That's it.
|
|
5
5
|
If you're looking to leverage tailwindcss in your Rails project, please see https://github.com/rails/tailwindcss-rails for integration that is supported by the Rails team.
|
6
6
|
|
7
7
|
|
8
|
+
## ⚠ Upgrade note ⚠
|
9
|
+
|
10
|
+
To upgrade an existing application from v3 to v4, I strongly urge you to read the upstream upgrade guide: https://tailwindcss.com/docs/upgrade-guide.
|
11
|
+
|
12
|
+
For Rails users, if you want to upgrade you may want to check out [TailwindCSS v4 - upgrade experience report · rails/tailwindcss-rails · Discussion #450](https://github.com/rails/tailwindcss-rails/discussions/450).
|
13
|
+
|
14
|
+
In any case, if you're not ready to upgrade to v4, then pin your project to the 3.x releases:
|
15
|
+
|
16
|
+
```ruby
|
17
|
+
# If you're not ready to upgrade yet!
|
18
|
+
gem "tailwindcss-ruby", "~> 3.4"
|
19
|
+
```
|
20
|
+
|
21
|
+
|
8
22
|
## Installation
|
9
23
|
|
10
|
-
This gem wraps [the standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS
|
24
|
+
This gem wraps [the standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS v4 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.
|
11
25
|
|
12
26
|
Supported platforms are:
|
13
27
|
|
Binary file
|
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: 4.0.
|
4
|
+
version: 4.0.1
|
5
5
|
platform: aarch64-linux-gnu
|
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: 2025-01-
|
12
|
+
date: 2025-01-29 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.
|