tailwindcss-ruby 0.1.0-x86_64-linux → 0.2.0-x86_64-linux

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: 874074d60efc0bf1063d32d99a2a62a713e5ff740d02a72d7cf249396ece6d20
4
- data.tar.gz: 45e5dbad619be38b068a29b48050a12838f1b548a94182cb652c7749d1ddb526
3
+ metadata.gz: 1a1b1c5002d1bfe6164db1242310a95180edb1649e91fcd0ca4fb359f911e8e6
4
+ data.tar.gz: 2c6692d2eba2eaceedf912cc4dc239fd2969c46fe714f9d73238148746127b46
5
5
  SHA512:
6
- metadata.gz: f1d25095ae59d12c458da8f18974b5c2d2bfe059ce2c13bef96f4bdb5e387552530d50401eeb7f4f0f6dec49114e3878e60dcb75e48d305dd2c09526bb169190
7
- data.tar.gz: b307e7e2b8454061c06d13f034717bfb85e2633638890d777d2d9789daeaabf719e02cdfc13988d4ba0d43c4ab543cdbe004839d8caaf81f74045ce635adf2a8
6
+ metadata.gz: 446faf893937e96ec64da6442f77308e5edffa3d15d46be5d079f3dec90be3f60500bf246b903afa2182a1886dc49aabbe425756b9b909da277fe60fb7eb08d3
7
+ data.tar.gz: 7cf7494edbd98b4b77d01506aa0c2846331019e2e77d5f1c62c2d76216e66da73183baae29617af224441259c22ff7ff6dca08576ad830a1060216dfc4a715ee
data/LICENSE-DEPENDENCIES CHANGED
@@ -1,4 +1,4 @@
1
- tailwindcss-rails may redistribute executables from the https://github.com/tailwindlabs/tailwindcss project
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-rails-2.6.0-x86_64-linux/exe/x86_64-linux/tailwindcss", "--help"]
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
@@ -1,7 +1,7 @@
1
1
  #! /usr/bin/env ruby
2
2
  # because rubygems shims assume a gem's executables are Ruby
3
3
 
4
- require "tailwindcss/commands"
4
+ require "tailwindcss/ruby"
5
5
 
6
6
  begin
7
7
  command = [Tailwindcss::Ruby.executable, *ARGV]
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tailwindcss
4
4
  module Ruby
5
- VERSION = "0.1.0"
5
+ VERSION = "0.2.0"
6
6
  end
7
7
  end
@@ -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-rails"
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
- tailwindcss-rails does not support the #{platform} platform
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/rails/tailwindcss-rails#check-bundle_force_ruby_platform
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.1.0
4
+ version: 0.2.0
5
5
  platform: x86_64-linux
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-25 00:00:00.000000000 Z
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.