jekyll-tailwindcss 0.3.0 → 0.3.1

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: e5faa947e25ddbf760e646d08df3ee2d2c67cea57715f2018532087a7b914ad9
4
- data.tar.gz: c758c3946ec9757979ecba495eb887316a2a1782dbb02017dfaa646b9f53cb82
3
+ metadata.gz: 75d434c7c83974fc629cc0896f7119d8f0f98581abe6538cb08cea7209db3cb7
4
+ data.tar.gz: fb18f1e889dcd3276cb4dad19dc9ecfed2c93c04f6dff175c4911143ff1a9766
5
5
  SHA512:
6
- metadata.gz: 64279d4437ef361b7b52026d343753b9cde8ce3c98addc99aaaa783a8e2b7ecf4d319a1ad8254d7f43593bcaae18403af24f04311cfa77a6012a74194ac3b53e
7
- data.tar.gz: a2b9da11c8bbe2279586eb7108cc4385b26392732f99ec3b0b75ff24ffc0aa8d9119bb20e2491794f8f08a38543135145d5f9c4109d580acd40fa9490da17c93
6
+ metadata.gz: b8b0637db403254e56022f1c50a0a37640fb7db1bcb18a463be2989a7bf696c33a5d84c8690e8261c877baf8f3ffa4d1444d621f5cfa0a0a54f3b2f732b3fc90
7
+ data.tar.gz: 1887b6539c5e2bd143efa5ed3045f440f2d51edfcff4c9009edf06f63bc200cdb7ce4c9ed28f96be5c4974bfdaf1d863880c0bf889ac601e1dec1a17580b52d3
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
 
@@ -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: ruby
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:
@@ -32,7 +32,7 @@ licenses:
32
32
  - MIT
33
33
  metadata:
34
34
  homepage_uri: https://github.com/vormwald/jekyll-tailwindcss
35
- post_install_message:
35
+ post_install_message:
36
36
  rdoc_options: []
37
37
  require_paths:
38
38
  - lib
@@ -47,8 +47,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
47
47
  - !ruby/object:Gem::Version
48
48
  version: '0'
49
49
  requirements: []
50
- rubygems_version: 3.5.11
51
- signing_key:
50
+ rubygems_version: 3.5.18
51
+ signing_key:
52
52
  specification_version: 4
53
53
  summary: Integrate Tailwind CSS into your Jekyll site.
54
54
  test_files: []