tailwindcss-rails 2.0.0.rc1-x64-mingw32 → 2.0.3-x64-mingw32

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: ce51f6da9e1802e658dc26f5bf7f57133f1ccd8c2f4d4ac65503456d3ba887d2
4
- data.tar.gz: d194c41dd58f06eac3cd34aae751553a3459cc975dc19a239de7d3105150c65f
3
+ metadata.gz: 61eb7d08fb90b6cc0530e38734455f1e287f3ee53d7841b6c469447057c391ab
4
+ data.tar.gz: 7297b62b91a07192c7cdefb56641bb892d90c475d3449e7d9b604497be9563d5
5
5
  SHA512:
6
- metadata.gz: f7d0d0ad293f6482d61e64cbfda51ecc5fb81c0df4b353f2a0a5b4626d52a6541ae8f292234d2c8ca578213119d796927247e089fa18f68dbdd87a71c985bf8f
7
- data.tar.gz: 868f1fa59ae5721a7d1e8e403a1450cc9e9f3b03f04e31ed0fbc6073eee89ea00d4d76e5dad547e99e6d5ed158b5440903b4ad3ba1b0eaabbad0685f20539dcb
6
+ metadata.gz: a23ade8043d84d73513d541a8879ef52a26813b8ca87799e2511ea0951c1f0f7c1f254f77405dbd3c57fded527d815a752c98d557a88df0c8a4aa86f93e4de48
7
+ data.tar.gz: 1f9343491238ae29c8c7abf6017a7d06ffc5ea1d7ace2871f19170d1d325fdbce7d3f30c937155252d5c52bd86927ef42ce45b771a95ada6c9c64d6c7862c678
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [Tailwind CSS](https://tailwindcss.com) is a utility-first CSS framework packed with classes like flex, pt-4, text-center and rotate-90 that can be composed to build any design, directly in your markup.
4
4
 
5
- This gem wraps [the standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS 3 framework. These executables are platform specific, but so there's actually separate underlying gems per platform, but the correct gem will automatically be picked for your platform. Supported platforms are Linux x64, macOS arm64, macOS x64, and Windows x64. (Note that due to this setup, you must install the actual gems – you can't pin your gem to the github repo.)
5
+ This gem wraps [the standalone executable version](https://tailwindcss.com/blog/standalone-cli) of the Tailwind CSS 3 framework. These executables are platform specific, so there are actually separate underlying gems per platform, but the correct gem will automatically be picked for your platform. Supported platforms are Linux x64, macOS arm64, macOS x64, and Windows x64. (Note that due to this setup, you must install the actual gems – you can't pin your gem to the github repo.)
6
6
 
7
7
  You can customize the Tailwind build through the `config/tailwind.config.js` file, just like you would if Tailwind was running in a traditional node installation. All the first-party plugins are supported.
8
8
 
data/exe/tailwindcss CHANGED
@@ -2,17 +2,38 @@
2
2
  # because rubygems shims assume a gem's executables are Ruby
3
3
 
4
4
  require "shellwords"
5
+ require "tailwindcss/upstream"
5
6
 
6
- platform_dir = Dir.glob(File.join(__dir__, "*")).select do |f|
7
- File.directory?(f) && Gem::Platform.match(File.basename(f))
8
- end.first
9
- if platform_dir.nil?
10
- raise "Cannot find the tailwindcss executable in #{__dir__} (1)"
7
+ supported_platforms = Tailwindcss::Upstream::NATIVE_PLATFORMS.keys
8
+ platform = [:cpu, :os].map { |m| Gem::Platform.local.send(m) }.join("-")
9
+
10
+ if supported_platforms.none? { |supported_platform| Gem::Platform.match(supported_platform) }
11
+ STDERR.puts(<<~ERRMSG)
12
+ ERROR: tailwindcss-rails does not support the #{platform} platform
13
+ Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
14
+ ERRMSG
15
+ exit 1
16
+ end
17
+
18
+ exe_path = Dir.glob(File.join(__dir__, "*", "tailwindcss")).find do |f|
19
+ Gem::Platform.match(File.basename(File.dirname(f)))
11
20
  end
21
+ if exe_path.nil?
22
+ STDERR.puts(<<~ERRMSG)
23
+ ERROR: Cannot find the tailwindcss executable for #{platform} in #{__dir__}
24
+ If you're using bundler, please make sure you're on the latest bundler version:
25
+
26
+ gem install bundler
27
+ bundle update --bundler
28
+
29
+ Then make sure your lock file includes this platform by running:
30
+
31
+ bundle lock --add-platform #{platform}
32
+ bundle install
12
33
 
13
- exe_path = File.join(platform_dir, "tailwindcss")
14
- if !File.exist?(exe_path)
15
- raise "Cannot find the tailwindcss executable in #{__dir__} (2)"
34
+ See `bundle lock --help` output for details.
35
+ ERRMSG
36
+ exit 1
16
37
  end
17
38
 
18
39
  command = Shellwords.join([exe_path, ARGV].flatten)
@@ -1,4 +1,4 @@
1
1
  <div>
2
- <h1 class="text-lg font-bold text-4xl"><%= class_name %>#<%= @action %></h1>
2
+ <h1 class="font-bold text-4xl"><%= class_name %>#<%= @action %></h1>
3
3
  <p>Find me in <%= @path %></p>
4
4
  </div>
@@ -4,7 +4,7 @@
4
4
  <%% end %>
5
5
 
6
6
  <div class="flex justify-between items-center">
7
- <h1 class="text-lg font-bold text-4xl"><%= human_name.pluralize %></h1>
7
+ <h1 class="font-bold text-4xl"><%= human_name.pluralize %></h1>
8
8
  <%%= link_to 'New <%= human_name.downcase %>', new_<%= singular_route_name %>_path, class: "rounded-lg py-3 px-5 bg-blue-600 text-white block font-medium" %>
9
9
  </div>
10
10
 
@@ -1,5 +1,5 @@
1
1
  <div class="mx-auto md:w-2/3 w-full">
2
- <h1 class="text-lg font-bold text-4xl">New <%= human_name.downcase %></h1>
2
+ <h1 class="font-bold text-4xl">New <%= human_name.downcase %></h1>
3
3
 
4
4
  <%%= render "form", <%= singular_table_name %>: @<%= singular_table_name %> %>
5
5
 
@@ -1,12 +1,11 @@
1
1
  const defaultTheme = require('tailwindcss/defaultTheme')
2
2
 
3
3
  module.exports = {
4
- darkMode: 'media',
5
4
  content: [
6
5
  './app/helpers/**/*.rb',
7
6
  './app/javascript/**/*.js',
8
7
  './app/views/**/*'
9
- ],
8
+ ],
10
9
  theme: {
11
10
  extend: {
12
11
  fontFamily: {
@@ -0,0 +1,15 @@
1
+ module Tailwindcss
2
+ # constants describing the upstream tailwindcss project
3
+ module Upstream
4
+ VERSION = "v3.0.8"
5
+
6
+ # rubygems platform name => upstream release filename
7
+ NATIVE_PLATFORMS = {
8
+ "arm64-darwin" => "tailwindcss-macos-arm64",
9
+ "x64-mingw32" => "tailwindcss-windows-x64.exe",
10
+ "x86_64-darwin" => "tailwindcss-macos-x64",
11
+ "x86_64-linux" => "tailwindcss-linux-x64",
12
+ "aarch64-linux" => "tailwindcss-linux-arm64",
13
+ }
14
+ end
15
+ end
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.0.0.rc1"
2
+ VERSION = "2.0.3"
3
3
  end
@@ -1,5 +1,6 @@
1
1
  module Tailwindcss
2
2
  end
3
3
 
4
+ require "tailwindcss/upstream"
4
5
  require "tailwindcss/version"
5
6
  require "tailwindcss/engine"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tailwindcss-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0.rc1
4
+ version: 2.0.3
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - David Heinemeier Hansson
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-12-18 00:00:00.000000000 Z
11
+ date: 2022-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -74,6 +74,7 @@ files:
74
74
  - lib/install/tailwindcss.rb
75
75
  - lib/tailwindcss-rails.rb
76
76
  - lib/tailwindcss/engine.rb
77
+ - lib/tailwindcss/upstream.rb
77
78
  - lib/tailwindcss/version.rb
78
79
  - lib/tasks/build.rake
79
80
  - lib/tasks/clobber.rake
@@ -95,9 +96,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
95
96
  version: '0'
96
97
  required_rubygems_version: !ruby/object:Gem::Requirement
97
98
  requirements:
98
- - - ">"
99
+ - - ">="
99
100
  - !ruby/object:Gem::Version
100
- version: 1.3.1
101
+ version: '0'
101
102
  requirements: []
102
103
  rubygems_version: 3.2.32
103
104
  signing_key: