tailwindcss-ruby 4.0.0-x86_64-linux-musl → 4.0.1-x86_64-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/x86_64-linux-musl/tailwindcss +0 -0
- data/lib/tailwindcss/ruby/upstream.rb +1 -1
- data/lib/tailwindcss/ruby/version.rb +1 -1
- metadata +6 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c56698b8c15c60e62d4ca6ecf163255fc75f5f6eb06f282c89bd6546addc0bdb
|
4
|
+
data.tar.gz: 135f0a296f1bde0935f46d66b4234553f3e8da92c3d923917fdc3d5ed40ab486
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 07e19a0e0318454d1a38da512bcdf7983001dc4b8a5558658f76b93d3a83cffd5a1b3fa016ed20e523f31eff73de2ef2b8a504db8036c5f69a9ed4b1b92e1fa8
|
7
|
+
data.tar.gz: cb8c44d65f006bc2d7648957825db9ee4ab3e5db38dc3987cd464ba04a9fa879249fe1e1ae06198bc167a237df2fd95c5e1fd20168adeb22735765bb56c07ca6
|
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,14 +1,15 @@
|
|
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: x86_64-linux-musl
|
6
6
|
authors:
|
7
7
|
- Mike Dalessio
|
8
8
|
- David Heinemeier Hansson
|
9
|
+
autorequire:
|
9
10
|
bindir: exe
|
10
11
|
cert_chain: []
|
11
|
-
date: 2025-01-
|
12
|
+
date: 2025-01-29 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.
|
54
|
+
rubygems_version: 3.5.22
|
55
|
+
signing_key:
|
53
56
|
specification_version: 4
|
54
57
|
summary: A self-contained `tailwindcss` executable.
|
55
58
|
test_files: []
|