tailwindcss-ruby 4.0.0 → 4.0.1
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/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: 47755f2f2dc48f0b3c380f6a931a551e5048f2e1222bc95dd5cfd6c53597a3c3
|
4
|
+
data.tar.gz: d326ac02dafe5cd34759e78271d788f470b6f8f9eeb969f76335d3ea268cc1ed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 736cd6a35287333cf0149fbab3985919d8ccdaad6f18ca10658fabc1480c38bf6e4ffb8aa7395353ff0692bde46f0a29fa994b28ada034f6e743c11e806709e4
|
7
|
+
data.tar.gz: 6137721994ddd5b0b69b313ce22436060e589eae9ec86f2a964968c206d857c6b9883459e8e6814ecd0188f5bb35c2468d3d8b531eab0f72b9109b651ea83cdc
|
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
|
|
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: ruby
|
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.
|
@@ -34,6 +35,7 @@ metadata:
|
|
34
35
|
source_code_uri: https://github.com/flavorjones/tailwindcss-ruby
|
35
36
|
changelog_uri: https://github.com/flavorjones/tailwindcss-ruby/blob/main/CHANGELOG.md
|
36
37
|
rubygems_mfa_required: 'true'
|
38
|
+
post_install_message:
|
37
39
|
rdoc_options: []
|
38
40
|
require_paths:
|
39
41
|
- lib
|
@@ -48,7 +50,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
50
|
- !ruby/object:Gem::Version
|
49
51
|
version: '0'
|
50
52
|
requirements: []
|
51
|
-
rubygems_version: 3.
|
53
|
+
rubygems_version: 3.5.22
|
54
|
+
signing_key:
|
52
55
|
specification_version: 4
|
53
56
|
summary: A self-contained `tailwindcss` executable.
|
54
57
|
test_files: []
|