tailwindcss-ruby 4.0.0.beta.10-arm64-darwin → 4.0.1-arm64-darwin

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b74d50a113bab897da15991047312106e069540c85cc661c214ccf6bed9ff304
4
- data.tar.gz: cbbdd5222da5e680d57fdfe8c0fa61677974a25f9e34313f31554a38f1a23a21
3
+ metadata.gz: 72f383fc0b4331af36c1890a57ec767a39abdf085e3a6397be12921c3677676f
4
+ data.tar.gz: c488e5867732ad37ea4f9db5c5cdc8a5d0384293db460cebe8c02c07a5827253
5
5
  SHA512:
6
- metadata.gz: ba7d8c59ee1522a92eacc32a6a93a22c60a553a164f6ed7f286309d0f45ede607f4534acc0659af89ad9a250aa536045cc08b7a8ad90a2e82f94cd65e713e74c
7
- data.tar.gz: faac1f642857063d31f40731236383ba37a1f5616b4143deb876428306935cca80ddd5471c1ab5e9ca92e29977ee680af79fdf84c74b91bf53ab252c1eba1f9f
6
+ metadata.gz: 5d74fa87a6d82641c2921c39444cb548370a0612e21f796dfb90357a8653e0034dc377a58fd8389056ee752d29cb6fea901f5c3b771cb2b226c03133a699a56f
7
+ data.tar.gz: 2ecc366fd6c398e319d9d9b554c25ab2dbb8782f46321d6809ba4147c3fbeb5eaad58e185de6d7c4ce1a6b1ba86e10a9d709bb034324043bbad1001835476d25
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 v3 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.
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
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  module Ruby
3
3
  module Upstream
4
- VERSION = "v4.0.0-beta.10"
4
+ VERSION = "v4.0.1"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tailwindcss
4
4
  module Ruby
5
- VERSION = "4.0.0.beta.10"
5
+ VERSION = "4.0.1"
6
6
  end
7
7
  end
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.0.beta.10
4
+ version: 4.0.1
5
5
  platform: arm64-darwin
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-21 00:00:00.000000000 Z
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.