tailwindcss-ruby 0.1.0-arm64-darwin → 3.4.13-arm64-darwin

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: 1b501dab228351b4c7ff3f2a9dae34a2cc7f32fae14b5bef2291f10be3bbc39b
4
- data.tar.gz: 11940c7e7fc07c546331a05dd63d12c567d7fe95b1eaaf12a76d09a51ff85aa4
3
+ metadata.gz: e27fd30bb59cf6510d5826d5fefecd251733c725b71cc74bf0b5fb5dc5da40b6
4
+ data.tar.gz: 6309730e59f9c221ee56673c5453ed73a6e0a9aa5242f06e31d9d1740fd1d31c
5
5
  SHA512:
6
- metadata.gz: fc27c6acec74f4aecf5dcf527c4b177be1e63c42cf74609678ab2547d4c8f222943b9adcea6685c90306f39c62594bb8534bbb22ebbbf330cdb0ee4291fa6a81
7
- data.tar.gz: 17d7cd69c4faaaf52baafc439be239ded5c0581875603f936a7a23d3eb82f5b3b85ccfe50366232faff08d4b0700ae0eb8afbb959b0e755e58ee4b68f39ebe13
6
+ metadata.gz: 672d12fb8a97a9f17f09ce8242966fd262a81fc9a77c7f2e3d929587c1878685dd8511ccd12a998683a448138202fce8d72ab2413f4eab54cef5508837c52604
7
+ data.tar.gz: d1921afeb11791cf5a3c762b5f95618bd6465c08f8b7fec447f68bedb43d12d269aaf1884745ad598ca3cbf18af86452ae56b6e4816928a9ed5e5cbe81629d92
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/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020-2024 Mike Dalessio, David Heinemeier Hansson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
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 = "3.4.13"
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: 3.4.13
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: 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.
@@ -22,8 +22,8 @@ extensions: []
22
22
  extra_rdoc_files: []
23
23
  files:
24
24
  - LICENSE-DEPENDENCIES
25
+ - LICENSE.txt
25
26
  - README.md
26
- - Rakefile
27
27
  - exe/arm64-darwin/tailwindcss
28
28
  - exe/tailwindcss
29
29
  - lib/tailwindcss/ruby.rb
data/Rakefile DELETED
@@ -1,10 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "minitest/test_task"
5
-
6
- Minitest::TestTask.create
7
-
8
- require "standard/rake"
9
-
10
- task default: %i[test standard]