tailwindcss-rails 0.5.0 → 0.5.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4b9a393181af6d9379bbaa42ffd29eab2e9d6dce7bb2fd0236a62c75c4eea959
|
4
|
+
data.tar.gz: 2bf317fe004792663272d86c9c6c21fb97d8251fe4961a8691d96e75a7cda3a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d1a3969b3b2eda650d4fbefe207f3f265084b5701446ceb89f8fa7481bd2496e7bddd7dce686e2ee5f6ed43ed5fa3c40647fbbacfcbb361a61f5930c4761745
|
7
|
+
data.tar.gz: 788b20a116e5960f7adb7f9a5ed0d57439fbd87c61e881c8cbdcfe23cd95446330cc55f609c91f015254ed47a3718b2a71bc5f33217d24815bbb0dbfff33fa97
|
data/README.md
CHANGED
@@ -2,7 +2,9 @@
|
|
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 gives access to the standard Tailwind CSS framework configured for dark mode, forms, aspect-ratio, typography, and the Inter font via the asset pipeline using Sprockets
|
5
|
+
This gem gives access to the standard Tailwind CSS framework configured for dark mode, forms, aspect-ratio, typography, and the Inter font via the asset pipeline using Sprockets (and soon [Propshaft](https://github.com/rails/propshaft)).
|
6
|
+
|
7
|
+
If you need to customize Tailwind, you will need to install it under a full JavaScript bundling setup, such as [cssbundling-rails](https://github.com/rails/cssbundling-rails). This gem was specifically designed not to require a Node.js environment. If you're already using such an environment, you won't need this gem.
|
6
8
|
|
7
9
|
Production-mode purging of unused css class names is provided by a Sprockets compressor built into this gem. This compressor ensures that only the css classes used by files in `app/views` and `app/helpers` are included. In development mode, the full 7mb+ Tailwind stylesheet is loaded.
|
8
10
|
|
data/lib/tailwindcss/version.rb
CHANGED
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: 0.5.
|
4
|
+
version: 0.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Heinemeier Hansson
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-10-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -51,6 +51,8 @@ files:
|
|
51
51
|
- app/assets/fonts/Inter-roman.vietnamese.var.woff2
|
52
52
|
- app/assets/stylesheets/inter-font.css.erb
|
53
53
|
- app/assets/stylesheets/tailwind.css
|
54
|
+
- lib/generators/tailwindcss/controller/controller_generator.rb
|
55
|
+
- lib/generators/tailwindcss/controller/templates/view.html.erb.tt
|
54
56
|
- lib/generators/tailwindcss/scaffold/scaffold_generator.rb
|
55
57
|
- lib/generators/tailwindcss/scaffold/templates/_form.html.erb.tt
|
56
58
|
- lib/generators/tailwindcss/scaffold/templates/edit.html.erb.tt
|