File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
module Tailwindcss
2
2
# constants describing the upstream tailwindcss project
3
3
module Upstream
4
- VERSION = "v3.4.6 "
4
+ VERSION = "v3.4.7 "
5
5
6
6
# rubygems platform name => upstream release filename
7
7
NATIVE_PLATFORMS = {
Original file line number Diff line number Diff line change
1
+ 8f8b5cd32fc35843ec24bbcdb214e972df6a9c485bf4d4fd049140fbcc766bcc tailwindcss-macos-x64
2
+ 0eda3bc8fe90506b7b9e5cb930312042730b76a7f18026d19414d48fbb3100ed tailwindcss-macos-arm64
3
+ 3c2321e66718f39e48388707ce8b587946338f82ef3d636c8ee19670514d3394 tailwindcss-linux-x64
4
+ 4146a6f534fffb27f95de9926d7806a6e432eeb7e55cb8850a57c4e062689c2b tailwindcss-linux-arm64
5
+ 85c4c71618f0bfcdb0edf246ed6ee394a7addb8af34ed7dbdce9298279243994 tailwindcss-linux-armv7
6
+ e6891c3d181314b7d78382fe93121ff8957a9dbb1132a47afb064c0ed1f906e4 tailwindcss-windows-x64.exe
Original file line number Diff line number Diff line change 115
115
116
116
desc "Validate checksums for tailwindcss binaries"
117
117
task "check" => exepaths do
118
- sha_filename = "sha256sums.txt"
119
- sha_url = tailwindcss_download_url ( sha_filename )
118
+ sha_filename = File . absolute_path ( "../package/tailwindcss-#{ Tailwindcss ::Upstream ::VERSION } -checksums.txt" , __dir__ )
119
+ sha_url = if File . exist? ( sha_filename )
120
+ sha_filename
121
+ else
122
+ sha_url = tailwindcss_download_url ( "sha256sums.txt" )
123
+ end
120
124
gemspec = TAILWINDCSS_RAILS_GEMSPEC
121
125
122
126
checksums = URI . open ( sha_url ) . each_line . map do |line |
You can’t perform that action at this time.
0 commit comments