tailwindcss-rails 2.0.21 → 2.0.22
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +7 -2
- data/lib/generators/tailwindcss/scaffold/scaffold_generator.rb +2 -2
- data/lib/generators/tailwindcss/scaffold/templates/partial.html.erb.tt +6 -6
- data/lib/tailwindcss/upstream.rb +1 -1
- data/lib/tailwindcss/version.rb +1 -1
- data/lib/tasks/build.rake +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7418177b754f60c6f3453fbd8b4465326bc44f6e697b75c193d941e45d6ee8ca
|
4
|
+
data.tar.gz: 47accf91912ae6ccb0df902e24dc94bee3aa4f633760c7d84e2e02560b167b44
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd965ebccbfbdecd51a61e6e41d2b4e1fc34f9353a757e8ec645d31966185f882a5efce06086eb95a5406744ea8b594baecaac7ba4dcc999d8beb0a8f2836218
|
7
|
+
data.tar.gz: 1482a76b53c8ad518f4c4e23629abf996a3f26c0f3add32db1be121af5279f9871896341f4e3ea0ab940778dbdb73d9ecf49ae0a1a3b150d7062e9d14cb41966
|
data/README.md
CHANGED
@@ -28,8 +28,13 @@ The `tailwindcss:build` is automatically attached to `assets:precompile`, so bef
|
|
28
28
|
|
29
29
|
### Building for testing
|
30
30
|
|
31
|
-
The `tailwindcss:build` is automatically attached to `test:prepare
|
31
|
+
The `tailwindcss:build` task is automatically attached to the `test:prepare` Rake task. The `test:prepare` task is run before some test tasks (e.g. `test:all` and `test:controllers`), but not before the bare `test` task.
|
32
32
|
|
33
|
+
If your tests need Tailwind assets in your CI environment, it's best to be explicit and run this command:
|
34
|
+
|
35
|
+
```
|
36
|
+
bin/rails test:prepare test
|
37
|
+
```
|
33
38
|
|
34
39
|
### Update assets automatically
|
35
40
|
|
@@ -65,7 +70,7 @@ Tailwind uses modern CSS features that are not recognized by the `sassc-rails` e
|
|
65
70
|
|
66
71
|
### Class names must be spelled out
|
67
72
|
|
68
|
-
For Tailwind to work, your class names need to be spelled out.
|
73
|
+
For Tailwind to work, your class names need to be spelled out. If you need to make sure Tailwind generates class names that don't exist in your content files or that are programmatically composed, use the [safelist option](https://tailwindcss.com/docs/content-configuration#safelisting-classes).
|
69
74
|
|
70
75
|
### ERROR: Cannot find the tailwindcss executable for <supported platform>
|
71
76
|
|
@@ -22,7 +22,7 @@ module Tailwindcss
|
|
22
22
|
end
|
23
23
|
end
|
24
24
|
|
25
|
-
template "partial.html.erb", File.join("app/views", controller_file_path, "_#{
|
25
|
+
template "partial.html.erb", File.join("app/views", controller_file_path, "_#{singular_name}.html.erb")
|
26
26
|
end
|
27
27
|
|
28
28
|
private
|
@@ -31,4 +31,4 @@ module Tailwindcss
|
|
31
31
|
end
|
32
32
|
end
|
33
33
|
end
|
34
|
-
end
|
34
|
+
end
|
@@ -1,22 +1,22 @@
|
|
1
|
-
<div id="<%%= dom_id <%=
|
1
|
+
<div id="<%%= dom_id <%= singular_name %> %>">
|
2
2
|
<% attributes.reject(&:password_digest?).each do |attribute| -%>
|
3
3
|
<p class="my-5">
|
4
4
|
<strong class="block font-medium mb-1"><%= attribute.human_name %>:</strong>
|
5
5
|
<% if attribute.attachment? -%>
|
6
|
-
<%%= link_to <%=
|
6
|
+
<%%= link_to <%= singular_name %>.<%= attribute.column_name %>.filename, <%= singular_name %>.<%= attribute.column_name %> if <%= singular_name %>.<%= attribute.column_name %>.attached? %>
|
7
7
|
<% elsif attribute.attachments? -%>
|
8
|
-
<%% <%=
|
8
|
+
<%% <%= singular_name %>.<%= attribute.column_name %>.each do |<%= attribute.singular_name %>| %>
|
9
9
|
<div><%%= link_to <%= attribute.singular_name %>.filename, <%= attribute.singular_name %> %></div>
|
10
10
|
<%% end %>
|
11
11
|
<% else -%>
|
12
|
-
<%%= <%=
|
12
|
+
<%%= <%= singular_name %>.<%= attribute.column_name %> %>
|
13
13
|
<% end -%>
|
14
14
|
</p>
|
15
15
|
|
16
16
|
<% end -%>
|
17
17
|
<%% if action_name != "show" %>
|
18
|
-
<%%= link_to "Show this <%= human_name.downcase %>", <%=
|
19
|
-
<%%= link_to 'Edit this <%= human_name.downcase %>', edit_<%=
|
18
|
+
<%%= link_to "Show this <%= human_name.downcase %>", <%= singular_name %>, class: "rounded-lg py-3 px-5 bg-gray-100 inline-block font-medium" %>
|
19
|
+
<%%= link_to 'Edit this <%= human_name.downcase %>', edit_<%= singular_name %>_path(<%= singular_name %>), class: "rounded-lg py-3 ml-2 px-5 bg-gray-100 inline-block font-medium" %>
|
20
20
|
<hr class="mt-6">
|
21
21
|
<%% end %>
|
22
22
|
</div>
|
data/lib/tailwindcss/upstream.rb
CHANGED
data/lib/tailwindcss/version.rb
CHANGED
data/lib/tasks/build.rake
CHANGED
@@ -3,7 +3,7 @@ namespace :tailwindcss do
|
|
3
3
|
task :build do |_, args|
|
4
4
|
debug = args.extras.include?("debug")
|
5
5
|
command = Tailwindcss::Commands.compile_command(debug: debug)
|
6
|
-
puts command.inspect
|
6
|
+
puts command.inspect if args.extras.include?("verbose")
|
7
7
|
system(*command, exception: true)
|
8
8
|
end
|
9
9
|
|
@@ -12,7 +12,7 @@ namespace :tailwindcss do
|
|
12
12
|
debug = args.extras.include?("debug")
|
13
13
|
poll = args.extras.include?("poll")
|
14
14
|
command = Tailwindcss::Commands.watch_command(debug: debug, poll: poll)
|
15
|
-
puts command.inspect
|
15
|
+
puts command.inspect if args.extras.include?("verbose")
|
16
16
|
system(*command)
|
17
17
|
end
|
18
18
|
end
|
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.
|
4
|
+
version: 2.0.22
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: railties
|
@@ -98,7 +98,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
98
98
|
- !ruby/object:Gem::Version
|
99
99
|
version: '0'
|
100
100
|
requirements: []
|
101
|
-
rubygems_version: 3.
|
101
|
+
rubygems_version: 3.4.1
|
102
102
|
signing_key:
|
103
103
|
specification_version: 4
|
104
104
|
summary: Integrate Tailwind CSS with the asset pipeline in Rails.
|