vident-tailwind 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 1192f90217b3a947eebfeecc9d3f0b6fe8d76d4d48584e124abf93ad5ffa9490
4
+ data.tar.gz: 3b57634555e09bde6f2d4f6b8def9fa723702924af6c5a33cf2e071a098e696d
5
+ SHA512:
6
+ metadata.gz: 595dc5bb7493fcce65f4b549aef363783628ea79aa521530b2796b1dc0fabe333672c3cec0cf66f1e2350d30e06d83e62d1d85981f67ef59b6d043e7145e2d06
7
+ data.tar.gz: 250688a8f828bc415a9b2d29cf0a8dee08611f1455b99a79660c689b0d9542836e4529361e375e29745ba12a5599f9b6be8b7e687bb84a6eaa5eebabbe4283e1
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Vident::Tailwind
2
+ Short description and motivation.
3
+
4
+ ## Usage
5
+ How to use my plugin.
6
+
7
+ ## Installation
8
+ Add this line to your application's Gemfile:
9
+
10
+ ```ruby
11
+ gem "vident-tailwind"
12
+ ```
13
+
14
+ And then execute:
15
+ ```bash
16
+ $ bundle
17
+ ```
18
+
19
+ Or install it yourself as:
20
+ ```bash
21
+ $ gem install vident-tailwind
22
+ ```
23
+
24
+ ## Contributing
25
+ Contribution directions go here.
26
+
27
+ ## License
28
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
data/Rakefile ADDED
@@ -0,0 +1,3 @@
1
+ require "bundler/setup"
2
+
3
+ require "bundler/gem_tasks"
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :vident_tailwind do
3
+ # # Task goes here
4
+ # end
@@ -0,0 +1,6 @@
1
+ module Vident
2
+ module Tailwind
3
+ class Railtie < ::Rails::Railtie
4
+ end
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Vident
2
+ module Tailwind
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
@@ -0,0 +1,14 @@
1
+ require "vident/tailwind/version"
2
+ require "vident/tailwind/railtie"
3
+
4
+ require "tailwind_merge"
5
+
6
+ module Vident
7
+ module Tailwind
8
+ # Adds a utility class merge specifically for Tailwind, allowing you to more easily specify class overrides
9
+ # without having to worry about the specificity of the classes.
10
+ def produce_style_classes(class_names)
11
+ ::TailwindMerge::Merger.new.merge(dedupe_view_component_classes(class_names))
12
+ end
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: vident-tailwind
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Stephen Ierodiaconou
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-04-01 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '7'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '8'
23
+ type: :runtime
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '7'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '8'
33
+ - !ruby/object:Gem::Dependency
34
+ name: vident
35
+ requirement: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 0.8.0
40
+ - - "<"
41
+ - !ruby/object:Gem::Version
42
+ version: '1'
43
+ type: :runtime
44
+ prerelease: false
45
+ version_requirements: !ruby/object:Gem::Requirement
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ version: 0.8.0
50
+ - - "<"
51
+ - !ruby/object:Gem::Version
52
+ version: '1'
53
+ - !ruby/object:Gem::Dependency
54
+ name: tailwind_merge
55
+ requirement: !ruby/object:Gem::Requirement
56
+ requirements:
57
+ - - ">="
58
+ - !ruby/object:Gem::Version
59
+ version: 0.5.2
60
+ - - "<"
61
+ - !ruby/object:Gem::Version
62
+ version: '1'
63
+ type: :runtime
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: 0.5.2
70
+ - - "<"
71
+ - !ruby/object:Gem::Version
72
+ version: '1'
73
+ description: Vident with Tailwind class deduplication to allow easy overriding
74
+ email:
75
+ - stevegeek@gmail.com
76
+ executables: []
77
+ extensions: []
78
+ extra_rdoc_files: []
79
+ files:
80
+ - README.md
81
+ - Rakefile
82
+ - lib/tasks/vident/tailwind_tasks.rake
83
+ - lib/vident/tailwind.rb
84
+ - lib/vident/tailwind/railtie.rb
85
+ - lib/vident/tailwind/version.rb
86
+ homepage: https://github.com/stevegeek/vident-tailwind
87
+ licenses:
88
+ - MIT
89
+ metadata:
90
+ homepage_uri: https://github.com/stevegeek/vident-tailwind
91
+ source_code_uri: https://github.com/stevegeek/vident-tailwind
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubygems_version: 3.4.6
108
+ signing_key:
109
+ specification_version: 4
110
+ summary: Vident with Tailwind class deduplication to allow easy overriding
111
+ test_files: []