jekyll-tailwindcss 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9492cf16b8cad5f3df51dcfdd261be6be8e32924607dc589d0edeae0bc6f13da
4
- data.tar.gz: d3937dbfa2fa5fd19cd1fbe6054228496c2534607c3944e7eb3216e6815c73cb
3
+ metadata.gz: 78c6146f98c780cb65d3e2c6e77609212130b0b0442602a3fb1ee9218143978e
4
+ data.tar.gz: 001cd2bfefdc9db3b6519640294064fb19bf93a2b09445cad5757ebeff1f4cf2
5
5
  SHA512:
6
- metadata.gz: c0f7f4ab399b48b20094fd93ef318f4601c30e24547b7e2154720d1c5f1a34efe8c693dc9087babcafdd428f0d1017200a85c376527ea64a0d6ba4d7dcc995c5
7
- data.tar.gz: cd1594db42c22df32a69da50557fc767c01bb4ce21f9c1f0755ab120bf29c0bc7cc38286996b5b6dcd9077f82aa0da1883301457559fb039dda462dcd71fb261
6
+ metadata.gz: b98e748ed916539e63ffd33cb6202a51bcb0b4c95abea76c7ebb5415897d7647c4dd097c9e205927a47825af5de5aec9d789b50703f29a92c1e589976589d6b8
7
+ data.tar.gz: 7f0dc3a01fd94bf14a78fb7fd8ceca7f7f246144cddb438017ba40324ecc49b7a552e8e0d4fbbed645650ed79d8af7d37465002bec69301320b46e3a642b70f4
data/README.md CHANGED
@@ -126,7 +126,7 @@ gem "jekyll-tailwindcss", path: "/path/to/jekyll-tailwindcss"
126
126
  - [ ] commit and create a git tag ( example `git tag -a v0.3.1 -m "Release 0.3.1"` )
127
127
  - push
128
128
  - [ ] `bundle exec rake build`
129
- - [ ] `gem push pkg/*.gem`
129
+ - [ ] `gem push pkg/jekyll-tailwind-[NEW_VERSION].gem
130
130
  - [ ] `git push --follow-tags`
131
131
  - announce
132
132
  - [ ] create a release at https://github.com/vormwald/jekyll-tailwindcss/releases
@@ -29,8 +29,8 @@ module Jekyll
29
29
  Open3.popen3(tailwindcss_env_options, compile_command) do |stdin, stdout, stderr, _wait_thread|
30
30
  stdin.write content # write the content of *.tailwindcss to the tailwindcss CLI as input
31
31
  stdin.close
32
- error = stderr.read
33
32
  output = stdout.read
33
+ error = stderr.read
34
34
  end
35
35
  Jekyll.logger.warn "Jekyll Tailwind:", error unless error.nil?
36
36
 
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Tailwindcss
5
- VERSION = "0.5.0"
5
+ VERSION = "0.5.1"
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-tailwindcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mike Vormwald
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-12-19 00:00:00.000000000 Z
10
+ date: 2025-01-07 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: tailwindcss-ruby
@@ -24,7 +23,6 @@ dependencies:
24
23
  - - ">="
25
24
  - !ruby/object:Gem::Version
26
25
  version: '0'
27
- description:
28
26
  email:
29
27
  - mvormwald@gmail.com
30
28
  executables:
@@ -40,13 +38,11 @@ files:
40
38
  - lib/jekyll-tailwindcss/version.rb
41
39
  - lib/jekyll/converters/tailwindcss.rb
42
40
  - lib/tailwindcss/commands.rb
43
- - lib/tailwindcss/upstream.rb
44
41
  homepage: https://github.com/vormwald/jekyll-tailwindcss
45
42
  licenses:
46
43
  - MIT
47
44
  metadata:
48
45
  homepage_uri: https://github.com/vormwald/jekyll-tailwindcss
49
- post_install_message:
50
46
  rdoc_options: []
51
47
  require_paths:
52
48
  - lib
@@ -61,8 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
61
57
  - !ruby/object:Gem::Version
62
58
  version: '0'
63
59
  requirements: []
64
- rubygems_version: 3.5.11
65
- signing_key:
60
+ rubygems_version: 3.6.2
66
61
  specification_version: 4
67
62
  summary: Integrate Tailwind CSS into your Jekyll site.
68
63
  test_files: []
@@ -1,7 +0,0 @@
1
- module Tailwindcss
2
- # constants describing the upstream tailwindcss project
3
- module Upstream
4
- VERSION = Tailwindcss::Ruby::Upstream::VERSION
5
- deprecate_constant :VERSION
6
- end
7
- end