tailwindcss-ruby 4.0.0-x64-mingw32 → 4.0.1-x64-mingw32
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/x64-mingw32/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: 392cf91938458eb1ef5432be38cec13098eb4eefa8f6adc9dffdd1d6b2ea7ba7
|
4
|
+
data.tar.gz: 0a8e2ee09345829ebb8bdce002591ec4ecdceac6d713234273a6d52877050d0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac6c6ace08f08a438d7c01780eb65bb327422990a9a14978e4b8596afa2c55ce8a09657859cd8efe80f77d8df7477f132ba7169383a42fc1405c79e45fa0a80e
|
7
|
+
data.tar.gz: 2fdbf2b74f53be93e6c62adb7a887fe99433b003fe74ce957d6400468935b8804242c4e3a644696a95a0cbbb232819b01e7aa4c2cf7dd1c89b516efb1d116f29
|
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
|
|
data/exe/x64-mingw32/tailwindcss
CHANGED
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: x64-mingw32
|
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: []
|