tailwindcss-rails 2.0.0-x86_64-linux → 2.0.1-x86_64-linux

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: b1215dbe571ca7f30ec0a8543dbf071e0279c0f01dd21e00df1e8b89f507ae76
4
- data.tar.gz: aba0734284d5b298ea30a764af406a8aae06ced42be153509cd4992aa4443434
3
+ metadata.gz: ebd71e16d61b22eafef3078837fda573e06b7d68c2fe25da8d0d7d4595d0db7a
4
+ data.tar.gz: edb41230ae988d9968c6cb043226cdced67247064c6a3c6fae5579110dbebb88
5
5
  SHA512:
6
- metadata.gz: c1ee729d59c07f2103b29a4f8a71471b8d9cbb92533826f598857b9d491ef33a50e72dcf29ae566afb867f2cb78283bafac828f2439c6262c8d5871f0bed7fec
7
- data.tar.gz: beea9059cf17dd121f92f0f7a6c184f0795adc626b4a39d60713b7f637d7e3d1528fbe195b84b4f4c31ba0d5aabaed260936fc7cddfe6e19bd2a92083a2c4d0d
6
+ metadata.gz: 9904b5fc1f2b6aab3d3316b162cfb50c7d72fa20b3a724df3ea8a62def4bc593e1b0e709b0f8b2f8d6afd5c5bcf857d2a9adf9fe2afc0fb745c634883db4b035
7
+ data.tar.gz: 036164441e73a23cbda57723939df98702a7406547c0ce75b7b0a6c9c55c4ed9e2a10237ceb73a1fc1e0457bd1e7d7ce7cc0323804e28658bf9695a27d413548
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,37 @@
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
+
9
+ if supported_platforms.none? { |supported_platform| Gem::Platform.match(supported_platform) }
10
+ STDERR.puts(<<~ERRMSG)
11
+ ERROR: tailwindcss-rails does not support the #{::Gem::Platform.local} platform
12
+ Please install tailwindcss following instructions at https://tailwindcss.com/docs/installation
13
+ ERRMSG
14
+ exit 1
15
+ end
16
+
17
+ exe_path = Dir.glob(File.join(__dir__, "*", "tailwindcss")).find do |f|
18
+ Gem::Platform.match(File.basename(File.dirname(f)))
11
19
  end
20
+ if exe_path.nil?
21
+ STDERR.puts(<<~ERRMSG)
22
+ ERROR: Cannot find the tailwindcss executable for #{::Gem::Platform.local} in #{__dir__}
23
+ If you're using bundler, please make sure you're on the latest bundler version:
24
+
25
+ gem install bundler
26
+ bundle update --bundler
27
+
28
+ Then make sure your lock file includes this platform by running:
29
+
30
+ bundle lock --add-platform #{::Gem::Platform.local}
31
+ bundle install
12
32
 
13
- exe_path = File.join(platform_dir, "tailwindcss")
14
- if !File.exist?(exe_path)
15
- raise "Cannot find the tailwindcss executable in #{__dir__} (2)"
33
+ See `bundle lock --help` output for details.
34
+ ERRMSG
35
+ exit 1
16
36
  end
17
37
 
18
38
  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
 
@@ -0,0 +1,14 @@
1
+ module Tailwindcss
2
+ # constants describing the upstream tailwindcss project
3
+ module Upstream
4
+ VERSION = "v3.0.5"
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
+ }
13
+ end
14
+ end
@@ -1,3 +1,3 @@
1
1
  module Tailwindcss
2
- VERSION = "2.0.0"
2
+ VERSION = "2.0.1"
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
4
+ version: 2.0.1
5
5
  platform: x86_64-linux
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: 2021-12-19 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