jekyll-tailwindcss 0.3.0-arm64-darwin → 0.3.1-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: ddfa6ecf094f34df164f44db591e64cba466cbbf47b4445f470bd6b3e2f4dac9
4
- data.tar.gz: f96013ef903a9343360e3dfbb7e1c1796c3a8746aa8c52130b65a2690cc4c99e
3
+ metadata.gz: 31087f0c26fe6d34493d47f31493c8f158b434a076662a0d3b3ad9d5c8d5bf22
4
+ data.tar.gz: dfe695f6a508d6a15a222d48b8ce8af694ec80a3a653bbdb06848279d9660ad3
5
5
  SHA512:
6
- metadata.gz: e8b9c7a226f13e5ea7cb5dfffd76ad12928f9952108f4e3419de0b4d463314a8e44b337acba603f2c9caa1bc6d28d26fbffbd53ac376623c2a77257269637706
7
- data.tar.gz: aed1bab04b118e828efbb58f3fce252fb9b431fda8cb57c5c1ad8281bed43a35c367e7f20c4160fb08163e4cc33117a96af26f42410b13632ac4fea6ddd9d7d3
6
+ metadata.gz: 9610764f2d767054a8b366a64d4e9f8cc74b60a3610ea3caed82ca4c87227fa7b1d91f69fbe1b61cf177f9c413fe8083e5f0bdd2d650a7c70738b070ceffeb0e
7
+ data.tar.gz: c4df02bb13ef6e5e0889f24934c303f03691a54b23ae1d6fc1618c4f0ea28204f7e3f2d8158f51b14f38d6b4d7b5c5651e183fcedb4625e8abe7c5946bdd70b0
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Bring the fun of building with TailwindCSS into your Jekyll project (without any JavaScript)
4
4
 
5
- **TL;DR** This gem borrows *heavily* from github.com/rails/tailwindcss-rails to provide platform-specific tailwind executables and provide a smooth developer experience in Jekyll projects
5
+ **TL;DR** This gem borrows *heavily* from [tailwindcss-rails](https://github.com/rails/tailwindcss-rails) to provide platform-specific tailwind executables and provide a smooth developer experience in Jekyll projects
6
6
 
7
7
  Much like the Rails gem, this gem wraps [the standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS v3 framework. It installs these as platform-specific executables, so there are separate underlying gems per platform, but the correct gem will automatically be picked for your platform.
8
8
 
@@ -126,13 +126,13 @@ gem "jekyll-tailwindcss", path: "/path/to/jekyll-tailwindcss"
126
126
  - bump the version
127
127
  - [ ] update `lib/jekyll-tailwindcss/version.rb`
128
128
  - [ ] update `CHANGELOG.md`
129
- - [ ] commit and create a git tag
129
+ - [ ] commit and create a git tag ( example `git tag -a v0.3.1 -m "Release 0.3.1"` )
130
130
  - build the native gems:
131
131
  - [ ] `bundle exec rake clobber` to clean up possibly old tailwindcss executables
132
132
  - [ ] `bundle exec rake package`
133
133
  - push
134
134
  - [ ] `for g in pkg/*.gem ; do gem push $g ; done`
135
- - [ ] `git push`
135
+ - [ ] `git push --follow-tags`
136
136
  - announce
137
137
  - [ ] create a release at https://github.com/vormwald/jekyll-tailwindcss/releases
138
138
 
Binary file
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Jekyll
4
4
  module Tailwindcss
5
- VERSION = "0.3.0"
5
+ VERSION = "0.3.1"
6
6
  end
7
7
  end
@@ -1,7 +1,7 @@
1
1
  module Tailwindcss
2
2
  # constants describing the upstream tailwindcss project
3
3
  module Upstream
4
- VERSION = "v3.4.3"
4
+ VERSION = "v3.4.12"
5
5
 
6
6
  # rubygems platform name => upstream release filename
7
7
  NATIVE_PLATFORMS = {
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-tailwindcss
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: arm64-darwin
6
6
  authors:
7
7
  - Mike Vormwald
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-06-09 00:00:00.000000000 Z
11
+ date: 2024-09-23 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description:
13
+ description:
14
14
  email:
15
15
  - mvormwald@gmail.com
16
16
  executables:
@@ -34,7 +34,7 @@ licenses:
34
34
  - MIT
35
35
  metadata:
36
36
  homepage_uri: https://github.com/vormwald/jekyll-tailwindcss
37
- post_install_message:
37
+ post_install_message:
38
38
  rdoc_options: []
39
39
  require_paths:
40
40
  - lib
@@ -49,8 +49,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.5.11
53
- signing_key:
52
+ rubygems_version: 3.5.18
53
+ signing_key:
54
54
  specification_version: 4
55
55
  summary: Integrate Tailwind CSS into your Jekyll site.
56
56
  test_files: []