tailwindcss-ruby 4.0.0.beta.10-aarch64-linux-musl → 4.0.1-aarch64-linux-musl
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-musl/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: 5f096616b52f2f391351b50f92d71d262a5429d5acbd04c329b484954ec39946
|
4
|
+
data.tar.gz: 06d039ab534023fa42bcf0c8c2b30747ce96e4b7c30671523f8b5d07047d9031
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 827f14bef6cf0feda4136973afa27997551cdcca25d352f931b8c8fcfd2e8bd96b12ebbeb657ce64dda6a8d137517bfee5732e25b56fddeac5b7cb6f1404e1f6
|
7
|
+
data.tar.gz: 3ed0e31db5f08f9e81e90bf773c12564343169d1f8e353e00e6dfdff83d4f959838b0a109ff516bc2fdc91ad12de4224486f9f7a846584db7d264355d6c8a20c
|
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-musl
|
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.
|