tailwindcss-rails 2.0.2-x64-mingw32 → 2.0.3-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 72afff2dc6a0532e1dc51b805dd4e408972e2a1119a6d6cb4168c70c30079221
4
- data.tar.gz: d47d7b9ec3384495217bc83f8cd2f597af547d37e5b1a88ae6994b2410b65af5
3
+ metadata.gz: 61eb7d08fb90b6cc0530e38734455f1e287f3ee53d7841b6c469447057c391ab
4
+ data.tar.gz: 7297b62b91a07192c7cdefb56641bb892d90c475d3449e7d9b604497be9563d5
5
5
  SHA512:
6
- metadata.gz: be29a5a907be7ad6f4abcc4eeceaaab40b29555a663b2062e6c08cc91ee92117f7045dad76906dad39d11ff6e6e919b2bcc8b296430c4f053292e7b0d0a847e3
7
- data.tar.gz: 6353db6f7377e66d759c83e363e563e7802e90eb005e7d31f9e09a3657975acb81d37562e43972d85c93154ff848416b8cb1f5a60fe132ab7a4e8778b90e9bad
6
+ metadata.gz: a23ade8043d84d73513d541a8879ef52a26813b8ca87799e2511ea0951c1f0f7c1f254f77405dbd3c57fded527d815a752c98d557a88df0c8a4aa86f93e4de48
7
+ data.tar.gz: 1f9343491238ae29c8c7abf6017a7d06ffc5ea1d7ace2871f19170d1d325fdbce7d3f30c937155252d5c52bd86927ef42ce45b771a95ada6c9c64d6c7862c678
data/exe/tailwindcss CHANGED
@@ -5,10 +5,11 @@ require "shellwords"
5
5
  require "tailwindcss/upstream"
6
6
 
7
7
  supported_platforms = Tailwindcss::Upstream::NATIVE_PLATFORMS.keys
8
+ platform = [:cpu, :os].map { |m| Gem::Platform.local.send(m) }.join("-")
8
9
 
9
10
  if supported_platforms.none? { |supported_platform| Gem::Platform.match(supported_platform) }
10
11
  STDERR.puts(<<~ERRMSG)
11
- ERROR: tailwindcss-rails does not support the #{::Gem::Platform.local} platform
12
+ ERROR: tailwindcss-rails does not support the #{platform} platform
12
13
  Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
13
14
  ERRMSG
14
15
  exit 1
@@ -19,7 +20,7 @@ exe_path = Dir.glob(File.join(__dir__, "*", "tailwindcss")).find do |f|
19
20
  end
20
21
  if exe_path.nil?
21
22
  STDERR.puts(<<~ERRMSG)
22
- ERROR: Cannot find the tailwindcss executable for #{::Gem::Platform.local} in #{__dir__}
23
+ ERROR: Cannot find the tailwindcss executable for #{platform} in #{__dir__}
23
24
  If you're using bundler, please make sure you're on the latest bundler version:
24
25
 
25
26
  gem install bundler
@@ -27,7 +28,7 @@ if exe_path.nil?
27
28
 
28
29
  Then make sure your lock file includes this platform by running:
29
30
 
30
- bundle lock --add-platform #{::Gem::Platform.local}
31
+ bundle lock --add-platform #{platform}
31
32
  bundle install
32
33
 
33
34
  See `bundle lock --help` output for details.
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.0.7"
4
+ VERSION = "v3.0.8"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
@@ -9,6 +9,7 @@ module Tailwindcss
9
9
  "x64-mingw32" => "tailwindcss-windows-x64.exe",
10
10
  "x86_64-darwin" => "tailwindcss-macos-x64",
11
11
  "x86_64-linux" => "tailwindcss-linux-x64",
12
+ "aarch64-linux" => "tailwindcss-linux-arm64",
12
13
  }
13
14
  end
14
15
  end
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-19 00:00:00.000000000 Z
11
+ date: 2022-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties