tailwindcss-ruby 0.2.0 → 3.4.13

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: 62d95b4ae68b260bb3b9f6b0a4602e78332f53d7874626edbfa611c7f39ab1a5
4
- data.tar.gz: 412c99458afd5bd1400a96a5f1e06e2bc90fa90cec27d336c8503cdc96f0bb4b
3
+ metadata.gz: 63800f1fd29ab210589b433d968ace1b191c74447a124976bbcc48f2fcbffc77
4
+ data.tar.gz: b839f0037fc474ff3d07281b1ec832d1b2f82d145afd33016a4bb8f80e5fe86d
5
5
  SHA512:
6
- metadata.gz: 0eafa50b39312b7f44d3ea1eaf4d33b9975e450660d4f4788cdaf12fc208d4bd69729160b80f279a8431445d2fa7c5a9ccf617459f04d4adebe8b3bd732bc5cc
7
- data.tar.gz: 87b74402d018b32ea7cda6838b62df0469c5873c932ea630c27ad31f66f5fcbccb3e2684e904bc834d6af186207c3705ba88e9f9b27daed379b25f3abf0c6e54
6
+ metadata.gz: 84d6a11a9d823acc055ed921cc1dd4fadadb0b3f9cc18690a82ed25ef8ee1cf94622ac8ec8cc9d935dd31dd62cee2f3295387ac83e4145a5205f1ce06b529510
7
+ data.tar.gz: d61602243fddf0b5b6bcd3027e792374f4579d704315d279eb656f38dd86ca74a9815ba0eb3dc894637c5563edd7dfc92de43f813bb2b5974126be6f9c694eb7
@@ -0,0 +1,26 @@
1
+ tailwindcss-ruby may redistribute executables from the https://github.com/tailwindlabs/tailwindcss project
2
+
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
+
5
+ MIT License
6
+
7
+ Copyright (c) Adam Wathan <adam.wathan@gmail.com>
8
+ Copyright (c) Jonathan Reinink <jonathan@reinink.ca>
9
+
10
+ Permission is hereby granted, free of charge, to any person obtaining a copy
11
+ of this software and associated documentation files (the "Software"), to deal
12
+ in the Software without restriction, including without limitation the rights
13
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
+ copies of the Software, and to permit persons to whom the Software is
15
+ furnished to do so, subject to the following conditions:
16
+
17
+ The above copyright notice and this permission notice shall be included in all
18
+ copies or substantial portions of the Software.
19
+
20
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
+ SOFTWARE.
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.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Tailwindcss
4
4
  module Ruby
5
- VERSION = "0.2.0"
5
+ VERSION = "3.4.13"
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: 0.2.0
4
+ version: 3.4.13
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Dalessio
@@ -21,8 +21,9 @@ executables:
21
21
  extensions: []
22
22
  extra_rdoc_files: []
23
23
  files:
24
+ - LICENSE-DEPENDENCIES
25
+ - LICENSE.txt
24
26
  - README.md
25
- - Rakefile
26
27
  - exe/tailwindcss
27
28
  - lib/tailwindcss/ruby.rb
28
29
  - lib/tailwindcss/ruby/upstream.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]