tailwindcss-ruby 0.1.0-x86_64-darwin → 0.2.0-x86_64-darwin
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE-DEPENDENCIES +1 -1
- data/README.md +1 -1
- data/exe/tailwindcss +1 -1
- data/lib/tailwindcss/ruby/version.rb +1 -1
- data/lib/tailwindcss/ruby.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98702ad1c29fd8d83fc1a6ee81cc01a889535103992b66fe5fab361b559d23bc
|
4
|
+
data.tar.gz: 5def7ff918a9465ff3cf3a5e3e40d86b53c09b33ecab7df7a850ca4def07f638
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0ea44c7b625c0a3497d0a18d8c213cd3d02eaac87c9bb4a948b901ad300dd1f8bee164317f330e20198ed5456e0a54014e320dfc9e4253cee32646d0a562555d
|
7
|
+
data.tar.gz: 6c5cfa6d6a02c421c9670be6315d3b9aaabc373a1f7019855be4d51d7a943abe6f6c9525a76060550fd000e31fa89c854f528ab17bbba5a8ca646fdf24f2796f
|
data/LICENSE-DEPENDENCIES
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
tailwindcss-
|
1
|
+
tailwindcss-ruby may redistribute executables from the https://github.com/tailwindlabs/tailwindcss project
|
2
2
|
|
3
3
|
The license for that software can be found at https://github.com/tailwindlabs/tailwindcss/blob/master/LICENSE which is reproduced here for your convenience:
|
4
4
|
|
data/README.md
CHANGED
@@ -79,7 +79,7 @@ $ bundle exec which tailwindcss
|
|
79
79
|
|
80
80
|
# run the actual executable through the shim
|
81
81
|
$ bundle exec tailwindcss --help
|
82
|
-
["/path/to/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/tailwindcss-
|
82
|
+
["/path/to/installs/ruby/3.3.5/lib/ruby/gems/3.3.0/gems/tailwindcss-ruby-0.1.0-x86_64-linux/exe/x86_64-linux/tailwindcss", "--help"]
|
83
83
|
|
84
84
|
tailwindcss v3.4.3
|
85
85
|
|
data/exe/tailwindcss
CHANGED
data/lib/tailwindcss/ruby.rb
CHANGED
@@ -6,7 +6,7 @@ require_relative "ruby/upstream"
|
|
6
6
|
module Tailwindcss
|
7
7
|
module Ruby
|
8
8
|
DEFAULT_DIR = File.expand_path(File.join(__dir__, "..", "..", "exe"))
|
9
|
-
GEM_NAME = "tailwindcss-
|
9
|
+
GEM_NAME = "tailwindcss-ruby"
|
10
10
|
|
11
11
|
# raised when the host platform is not supported by upstream tailwindcss's binary releases
|
12
12
|
class UnsupportedPlatformException < StandardError
|
@@ -40,7 +40,7 @@ module Tailwindcss
|
|
40
40
|
else
|
41
41
|
if Tailwindcss::Ruby::Upstream::NATIVE_PLATFORMS.keys.none? { |p| Gem::Platform.match_gem?(Gem::Platform.new(p), GEM_NAME) }
|
42
42
|
raise UnsupportedPlatformException, <<~MESSAGE
|
43
|
-
|
43
|
+
#{GEM_NAME} does not support the #{platform} platform
|
44
44
|
Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
|
45
45
|
MESSAGE
|
46
46
|
end
|
@@ -68,7 +68,7 @@ module Tailwindcss
|
|
68
68
|
|
69
69
|
If you're still seeing this message after taking those steps, try running
|
70
70
|
`bundle config` and ensure `force_ruby_platform` isn't set to `true`. See
|
71
|
-
https://github.com/
|
71
|
+
https://github.com/flavorjones/tailwindcss-ruby#check-bundle_force_ruby_platform
|
72
72
|
for more details.
|
73
73
|
MESSAGE
|
74
74
|
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: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: x86_64-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: 2024-09-
|
12
|
+
date: 2024-09-27 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.
|