tailwindcss-ruby 0.2.0-x86_64-darwin → 3.4.13-x86_64-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: 98702ad1c29fd8d83fc1a6ee81cc01a889535103992b66fe5fab361b559d23bc
4
- data.tar.gz: 5def7ff918a9465ff3cf3a5e3e40d86b53c09b33ecab7df7a850ca4def07f638
3
+ metadata.gz: e2e5a3d09dc0b4ccec495f9c7a09d26ed2cd1c45d77b8330cb75857fa7ed5de7
4
+ data.tar.gz: 8ebf0684361b1fb597a21907dcd792a201713fc96a7a2b1d5f304cfde712a1c3
5
5
  SHA512:
6
- metadata.gz: 0ea44c7b625c0a3497d0a18d8c213cd3d02eaac87c9bb4a948b901ad300dd1f8bee164317f330e20198ed5456e0a54014e320dfc9e4253cee32646d0a562555d
7
- data.tar.gz: 6c5cfa6d6a02c421c9670be6315d3b9aaabc373a1f7019855be4d51d7a943abe6f6c9525a76060550fd000e31fa89c854f528ab17bbba5a8ca646fdf24f2796f
6
+ metadata.gz: 1724aca4165858effc2c11b5505ca466b48f20b9619a5d9b480cf89c423d5d4c5ef96733d5a0169bc27b27e7e9274361474ff37b6919fccd49b00dfdd2a40f88
7
+ data.tar.gz: 8dfc041a1531039c4a27b4bde08ce4ac0941779d4a1e680aeabc3bf1aad252d38ecab0b83953da10195de0f658375d51f8e9940db3257e0bdb76f873f1721668
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: x86_64-darwin
6
6
  authors:
7
7
  - Mike Dalessio
@@ -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/tailwindcss
28
28
  - exe/x86_64-darwin/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]