administrate_tailwind_theme 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +7 -0
  2. data/.rubocop.yml +33 -0
  3. data/.ruby-version +1 -0
  4. data/.rubycritic.yml +5 -0
  5. data/CODE_OF_CONDUCT.md +84 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +104 -0
  8. data/Rakefile +10 -0
  9. data/administrate_tailwind_theme.gemspec +33 -0
  10. data/app/assets/config/administrate_tailwind_theme_manifest.js +2 -0
  11. data/app/assets/images/administrate/tailwind/theme/.keep +0 -0
  12. data/app/assets/javascripts/administrate-tailwind-theme.js +1 -0
  13. data/app/assets/stylesheets/administrate-tailwind-theme.css +0 -0
  14. data/app/controllers/.keep +0 -0
  15. data/app/controllers/concerns/.keep +0 -0
  16. data/app/helpers/.keep +0 -0
  17. data/app/helpers/application_helper.rb +4 -0
  18. data/app/jobs/.keep +0 -0
  19. data/app/mailers/.keep +0 -0
  20. data/app/models/.keep +0 -0
  21. data/app/models/concerns/.keep +0 -0
  22. data/app/views/.keep +0 -0
  23. data/app/views/admin/application/_flashes.html.erb +29 -0
  24. data/app/views/admin/application/_icons.html.erb +13 -0
  25. data/app/views/admin/application/_javascript.html.erb +21 -0
  26. data/app/views/admin/application/_navigation.html.erb +39 -0
  27. data/app/views/admin/application/_stylesheet.html.erb +14 -0
  28. data/app/views/administrate/application/_collection.html.erb +78 -0
  29. data/app/views/administrate/application/_collection_header_actions.html.erb +5 -0
  30. data/app/views/administrate/application/_collection_item_actions.html.erb +22 -0
  31. data/app/views/administrate/application/_flashes.html.erb +35 -0
  32. data/app/views/administrate/application/_form.html.erb +58 -0
  33. data/app/views/administrate/application/_icons.html.erb +13 -0
  34. data/app/views/administrate/application/_index_header.html.erb +28 -0
  35. data/app/views/administrate/application/_javascript.html.erb +21 -0
  36. data/app/views/administrate/application/_navigation.html.erb +27 -0
  37. data/app/views/administrate/application/_pagination.html.erb +1 -0
  38. data/app/views/administrate/application/_search.html.erb +21 -0
  39. data/app/views/administrate/application/_stylesheet.html.erb +14 -0
  40. data/app/views/administrate/application/edit.html.erb +42 -0
  41. data/app/views/administrate/application/index.html.erb +49 -0
  42. data/app/views/administrate/application/new.html.erb +43 -0
  43. data/app/views/administrate/application/show.html.erb +71 -0
  44. data/app/views/administrate/navigation/icons/_comments.html.erb +4 -0
  45. data/app/views/administrate/navigation/icons/_messages.html.erb +4 -0
  46. data/app/views/administrate/navigation/icons/_users.erb +6 -0
  47. data/app/views/fields/belongs_to/_form.html.erb +29 -0
  48. data/app/views/fields/belongs_to/_index.html.erb +27 -0
  49. data/app/views/fields/belongs_to/_show.html.erb +28 -0
  50. data/app/views/fields/boolean/_form.html.erb +24 -0
  51. data/app/views/fields/boolean/_index.html.erb +19 -0
  52. data/app/views/fields/boolean/_show.html.erb +24 -0
  53. data/app/views/fields/boolean_emoji/_form.html.erb +7 -0
  54. data/app/views/fields/boolean_emoji/_index.html.erb +1 -0
  55. data/app/views/fields/boolean_emoji/_show.html.erb +3 -0
  56. data/app/views/fields/country_emoji/_form.html.erb +6 -0
  57. data/app/views/fields/country_emoji/_index.html.erb +1 -0
  58. data/app/views/fields/country_emoji/_show.html.erb +3 -0
  59. data/app/views/fields/date/_form.html.erb +23 -0
  60. data/app/views/fields/date/_index.html.erb +21 -0
  61. data/app/views/fields/date/_show.html.erb +23 -0
  62. data/app/views/fields/date_time/_form.html.erb +23 -0
  63. data/app/views/fields/date_time/_index.html.erb +21 -0
  64. data/app/views/fields/date_time/_show.html.erb +23 -0
  65. data/app/views/fields/email/_form.html.erb +23 -0
  66. data/app/views/fields/email/_index.html.erb +18 -0
  67. data/app/views/fields/email/_show.html.erb +20 -0
  68. data/app/views/fields/has_many/_form.html.erb +29 -0
  69. data/app/views/fields/has_many/_index.html.erb +19 -0
  70. data/app/views/fields/has_many/_show.html.erb +39 -0
  71. data/app/views/fields/has_one/_form.html.erb +39 -0
  72. data/app/views/fields/has_one/_index.html.erb +24 -0
  73. data/app/views/fields/has_one/_show.html.erb +48 -0
  74. data/app/views/fields/number/_form.html.erb +23 -0
  75. data/app/views/fields/number/_index.html.erb +19 -0
  76. data/app/views/fields/number/_show.html.erb +21 -0
  77. data/app/views/fields/password/_form.html.erb +23 -0
  78. data/app/views/fields/password/_index.html.erb +18 -0
  79. data/app/views/fields/password/_show.html.erb +20 -0
  80. data/app/views/fields/polymorphic/_form.html.erb +29 -0
  81. data/app/views/fields/polymorphic/_index.html.erb +27 -0
  82. data/app/views/fields/polymorphic/_show.html.erb +32 -0
  83. data/app/views/fields/select/_form.html.erb +31 -0
  84. data/app/views/fields/select/_index.html.erb +16 -0
  85. data/app/views/fields/select/_show.html.erb +18 -0
  86. data/app/views/fields/string/_form.html.erb +24 -0
  87. data/app/views/fields/string/_index.html.erb +18 -0
  88. data/app/views/fields/string/_show.html.erb +21 -0
  89. data/app/views/fields/text/_form.html.erb +22 -0
  90. data/app/views/fields/text/_index.html.erb +18 -0
  91. data/app/views/fields/text/_show.html.erb +20 -0
  92. data/app/views/fields/time/_form.html.erb +22 -0
  93. data/app/views/fields/time/_index.html.erb +19 -0
  94. data/app/views/fields/time/_show.html.erb +21 -0
  95. data/app/views/fields/url/_form.html.erb +23 -0
  96. data/app/views/fields/url/_index.html.erb +20 -0
  97. data/app/views/fields/url/_show.html.erb +22 -0
  98. data/app/views/kaminari/_first_page.html.erb +11 -0
  99. data/app/views/kaminari/_gap.html.erb +8 -0
  100. data/app/views/kaminari/_last_page.html.erb +11 -0
  101. data/app/views/kaminari/_next_page.html.erb +11 -0
  102. data/app/views/kaminari/_page.html.erb +12 -0
  103. data/app/views/kaminari/_paginator.html.erb +25 -0
  104. data/app/views/kaminari/_prev_page.html.erb +11 -0
  105. data/app/views/layouts/admin/application.html.erb +40 -0
  106. data/config/routes.rb +4 -0
  107. data/lib/administrate/field/boolean_emoji.rb +13 -0
  108. data/lib/administrate/field/country_emoji.rb +30 -0
  109. data/lib/administrate_tailwind_theme/engine.rb +15 -0
  110. data/lib/administrate_tailwind_theme/version.rb +5 -0
  111. data/lib/administrate_tailwind_theme/view_generator.rb +49 -0
  112. data/lib/administrate_tailwind_theme/view_helper.rb +22 -0
  113. data/lib/administrate_tailwind_theme.rb +9 -0
  114. data/lib/generators/administrate_tailwind_theme/install/USAGE +10 -0
  115. data/lib/generators/administrate_tailwind_theme/install/install_generator.rb +35 -0
  116. data/lib/generators/administrate_tailwind_theme/views/edit_generator.rb +18 -0
  117. data/lib/generators/administrate_tailwind_theme/views/field_generator.rb +52 -0
  118. data/lib/generators/administrate_tailwind_theme/views/form_generator.rb +17 -0
  119. data/lib/generators/administrate_tailwind_theme/views/index_generator.rb +18 -0
  120. data/lib/generators/administrate_tailwind_theme/views/layout_generator.rb +26 -0
  121. data/lib/generators/administrate_tailwind_theme/views/navigation_generator.rb +17 -0
  122. data/lib/generators/administrate_tailwind_theme/views/new_generator.rb +18 -0
  123. data/lib/generators/administrate_tailwind_theme/views/show_generator.rb +17 -0
  124. data/lib/generators/administrate_tailwind_theme/views/views_generator.rb +17 -0
  125. data/lib/tasks/administrate_tailwind/theme_tasks.rake +5 -0
  126. metadata +235 -0
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class FieldGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ def self.template_source_path
10
+ File.expand_path(
11
+ '../../../../app/views/fields',
12
+ __dir__
13
+ )
14
+ end
15
+
16
+ source_root template_source_path
17
+
18
+ def copy_partials
19
+ resource_path = args.first.try(:underscore)
20
+
21
+ if resource_path == 'all'
22
+ entries = Dir.entries(self.class.template_source_path)
23
+ field_types = entries.reject { |name| name[0] == '.' }
24
+
25
+ field_types.each do |field_type|
26
+ copy_field_partials(field_type)
27
+ end
28
+ else
29
+ copy_field_partials(resource_path)
30
+ end
31
+ end
32
+
33
+ private
34
+
35
+ def copy_field_partials(resource_path)
36
+ copy_field_partial(resource_path, :index)
37
+ copy_field_partial(resource_path, :show)
38
+ copy_field_partial(resource_path, :form)
39
+ end
40
+
41
+ def copy_field_partial(resource_path, partial_name)
42
+ template_file = "#{resource_path}/_#{partial_name}.html.erb"
43
+
44
+ copy_file(
45
+ template_file,
46
+ "app/views/fields/#{template_file}"
47
+ )
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class FormGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ source_root template_source_path
10
+
11
+ def copy_form
12
+ copy_resource_template('_form')
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class IndexGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ source_root template_source_path
10
+
11
+ def copy_template
12
+ copy_resource_template('index')
13
+ copy_resource_template('_collection')
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,26 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class LayoutGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ source_root template_source_path
10
+
11
+ def copy_template
12
+ copy_file(
13
+ '../../../app/views/layouts/admin/application.html.erb',
14
+ 'app/views/layouts/admin/application.html.erb'
15
+ )
16
+
17
+ call_generator('administrate_tailwind_theme:views:navigation')
18
+ copy_resource_template('_stylesheet')
19
+ copy_resource_template('_javascript')
20
+ copy_resource_template('_flashes')
21
+ copy_resource_template('_icons')
22
+ end
23
+ end
24
+ end
25
+ end
26
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class NavigationGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ source_root template_source_path
10
+
11
+ def copy_navigation
12
+ copy_resource_template('_navigation')
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,18 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class NewGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ source_root template_source_path
10
+
11
+ def copy_new
12
+ copy_resource_template('new')
13
+ copy_resource_template('_form')
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ module Views
8
+ class ShowGenerator < AdministrateTailwindTheme::ViewGenerator
9
+ source_root template_source_path
10
+
11
+ def copy_template
12
+ copy_resource_template('show')
13
+ end
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'administrate_tailwind_theme/view_generator'
4
+
5
+ module AdministrateTailwindTheme
6
+ module Generators
7
+ class ViewsGenerator < AdministrateTailwindTheme::ViewGenerator
8
+ def copy_templates
9
+ view = 'administrate_tailwind_theme:views:'
10
+ call_generator("#{view}index", resource_path, '--namespace', namespace)
11
+ call_generator("#{view}show", resource_path, '--namespace', namespace)
12
+ call_generator("#{view}new", resource_path, '--namespace', namespace)
13
+ call_generator("#{view}edit", resource_path, '--namespace', namespace)
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+ # desc "Explaining what the task does"
3
+ # task :administrate_tailwind_theme do
4
+ # # Task goes here
5
+ # end
metadata ADDED
@@ -0,0 +1,235 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: administrate_tailwind_theme
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Eth3rnit3
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-01-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: administrate
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '0.15'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '0.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: iso_country_codes
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.7.8
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.7.8
41
+ - !ruby/object:Gem::Dependency
42
+ name: rails
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '7.1'
48
+ - - ">="
49
+ - !ruby/object:Gem::Version
50
+ version: 7.1.3
51
+ type: :runtime
52
+ prerelease: false
53
+ version_requirements: !ruby/object:Gem::Requirement
54
+ requirements:
55
+ - - "~>"
56
+ - !ruby/object:Gem::Version
57
+ version: '7.1'
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: 7.1.3
61
+ - !ruby/object:Gem::Dependency
62
+ name: tailwindcss-rails
63
+ requirement: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: '2.0'
68
+ type: :runtime
69
+ prerelease: false
70
+ version_requirements: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: '2.0'
75
+ description: This gem provides a custom Tailwind CSS theme for the Administrate gem
76
+ used in Rails applications. It allows for easy integration and styling of the Administrate
77
+ dashboard with Tailwind CSS.
78
+ email:
79
+ - eth3rnit3@gmail.com
80
+ executables: []
81
+ extensions: []
82
+ extra_rdoc_files: []
83
+ files:
84
+ - ".rubocop.yml"
85
+ - ".ruby-version"
86
+ - ".rubycritic.yml"
87
+ - CODE_OF_CONDUCT.md
88
+ - LICENSE.txt
89
+ - README.md
90
+ - Rakefile
91
+ - administrate_tailwind_theme.gemspec
92
+ - app/assets/config/administrate_tailwind_theme_manifest.js
93
+ - app/assets/images/administrate/tailwind/theme/.keep
94
+ - app/assets/javascripts/administrate-tailwind-theme.js
95
+ - app/assets/stylesheets/administrate-tailwind-theme.css
96
+ - app/controllers/.keep
97
+ - app/controllers/concerns/.keep
98
+ - app/helpers/.keep
99
+ - app/helpers/application_helper.rb
100
+ - app/jobs/.keep
101
+ - app/mailers/.keep
102
+ - app/models/.keep
103
+ - app/models/concerns/.keep
104
+ - app/views/.keep
105
+ - app/views/admin/application/_flashes.html.erb
106
+ - app/views/admin/application/_icons.html.erb
107
+ - app/views/admin/application/_javascript.html.erb
108
+ - app/views/admin/application/_navigation.html.erb
109
+ - app/views/admin/application/_stylesheet.html.erb
110
+ - app/views/administrate/application/_collection.html.erb
111
+ - app/views/administrate/application/_collection_header_actions.html.erb
112
+ - app/views/administrate/application/_collection_item_actions.html.erb
113
+ - app/views/administrate/application/_flashes.html.erb
114
+ - app/views/administrate/application/_form.html.erb
115
+ - app/views/administrate/application/_icons.html.erb
116
+ - app/views/administrate/application/_index_header.html.erb
117
+ - app/views/administrate/application/_javascript.html.erb
118
+ - app/views/administrate/application/_navigation.html.erb
119
+ - app/views/administrate/application/_pagination.html.erb
120
+ - app/views/administrate/application/_search.html.erb
121
+ - app/views/administrate/application/_stylesheet.html.erb
122
+ - app/views/administrate/application/edit.html.erb
123
+ - app/views/administrate/application/index.html.erb
124
+ - app/views/administrate/application/new.html.erb
125
+ - app/views/administrate/application/show.html.erb
126
+ - app/views/administrate/navigation/icons/_comments.html.erb
127
+ - app/views/administrate/navigation/icons/_messages.html.erb
128
+ - app/views/administrate/navigation/icons/_users.erb
129
+ - app/views/fields/belongs_to/_form.html.erb
130
+ - app/views/fields/belongs_to/_index.html.erb
131
+ - app/views/fields/belongs_to/_show.html.erb
132
+ - app/views/fields/boolean/_form.html.erb
133
+ - app/views/fields/boolean/_index.html.erb
134
+ - app/views/fields/boolean/_show.html.erb
135
+ - app/views/fields/boolean_emoji/_form.html.erb
136
+ - app/views/fields/boolean_emoji/_index.html.erb
137
+ - app/views/fields/boolean_emoji/_show.html.erb
138
+ - app/views/fields/country_emoji/_form.html.erb
139
+ - app/views/fields/country_emoji/_index.html.erb
140
+ - app/views/fields/country_emoji/_show.html.erb
141
+ - app/views/fields/date/_form.html.erb
142
+ - app/views/fields/date/_index.html.erb
143
+ - app/views/fields/date/_show.html.erb
144
+ - app/views/fields/date_time/_form.html.erb
145
+ - app/views/fields/date_time/_index.html.erb
146
+ - app/views/fields/date_time/_show.html.erb
147
+ - app/views/fields/email/_form.html.erb
148
+ - app/views/fields/email/_index.html.erb
149
+ - app/views/fields/email/_show.html.erb
150
+ - app/views/fields/has_many/_form.html.erb
151
+ - app/views/fields/has_many/_index.html.erb
152
+ - app/views/fields/has_many/_show.html.erb
153
+ - app/views/fields/has_one/_form.html.erb
154
+ - app/views/fields/has_one/_index.html.erb
155
+ - app/views/fields/has_one/_show.html.erb
156
+ - app/views/fields/number/_form.html.erb
157
+ - app/views/fields/number/_index.html.erb
158
+ - app/views/fields/number/_show.html.erb
159
+ - app/views/fields/password/_form.html.erb
160
+ - app/views/fields/password/_index.html.erb
161
+ - app/views/fields/password/_show.html.erb
162
+ - app/views/fields/polymorphic/_form.html.erb
163
+ - app/views/fields/polymorphic/_index.html.erb
164
+ - app/views/fields/polymorphic/_show.html.erb
165
+ - app/views/fields/select/_form.html.erb
166
+ - app/views/fields/select/_index.html.erb
167
+ - app/views/fields/select/_show.html.erb
168
+ - app/views/fields/string/_form.html.erb
169
+ - app/views/fields/string/_index.html.erb
170
+ - app/views/fields/string/_show.html.erb
171
+ - app/views/fields/text/_form.html.erb
172
+ - app/views/fields/text/_index.html.erb
173
+ - app/views/fields/text/_show.html.erb
174
+ - app/views/fields/time/_form.html.erb
175
+ - app/views/fields/time/_index.html.erb
176
+ - app/views/fields/time/_show.html.erb
177
+ - app/views/fields/url/_form.html.erb
178
+ - app/views/fields/url/_index.html.erb
179
+ - app/views/fields/url/_show.html.erb
180
+ - app/views/kaminari/_first_page.html.erb
181
+ - app/views/kaminari/_gap.html.erb
182
+ - app/views/kaminari/_last_page.html.erb
183
+ - app/views/kaminari/_next_page.html.erb
184
+ - app/views/kaminari/_page.html.erb
185
+ - app/views/kaminari/_paginator.html.erb
186
+ - app/views/kaminari/_prev_page.html.erb
187
+ - app/views/layouts/admin/application.html.erb
188
+ - config/routes.rb
189
+ - lib/administrate/field/boolean_emoji.rb
190
+ - lib/administrate/field/country_emoji.rb
191
+ - lib/administrate_tailwind_theme.rb
192
+ - lib/administrate_tailwind_theme/engine.rb
193
+ - lib/administrate_tailwind_theme/version.rb
194
+ - lib/administrate_tailwind_theme/view_generator.rb
195
+ - lib/administrate_tailwind_theme/view_helper.rb
196
+ - lib/generators/administrate_tailwind_theme/install/USAGE
197
+ - lib/generators/administrate_tailwind_theme/install/install_generator.rb
198
+ - lib/generators/administrate_tailwind_theme/views/edit_generator.rb
199
+ - lib/generators/administrate_tailwind_theme/views/field_generator.rb
200
+ - lib/generators/administrate_tailwind_theme/views/form_generator.rb
201
+ - lib/generators/administrate_tailwind_theme/views/index_generator.rb
202
+ - lib/generators/administrate_tailwind_theme/views/layout_generator.rb
203
+ - lib/generators/administrate_tailwind_theme/views/navigation_generator.rb
204
+ - lib/generators/administrate_tailwind_theme/views/new_generator.rb
205
+ - lib/generators/administrate_tailwind_theme/views/show_generator.rb
206
+ - lib/generators/administrate_tailwind_theme/views/views_generator.rb
207
+ - lib/tasks/administrate_tailwind/theme_tasks.rake
208
+ homepage: https://github.com/eth3rnit3/administrate-tailwind-theme
209
+ licenses:
210
+ - MIT
211
+ metadata:
212
+ allowed_push_host: https://rubygems.org
213
+ homepage_uri: https://github.com/eth3rnit3/administrate-tailwind-theme
214
+ source_code_uri: https://github.com/eth3rnit3/administrate-tailwind-theme
215
+ changelog_uri: https://github.com/eth3rnit3/administrate-tailwind-theme/blob/main/CHANGELOG.md
216
+ post_install_message:
217
+ rdoc_options: []
218
+ require_paths:
219
+ - lib
220
+ required_ruby_version: !ruby/object:Gem::Requirement
221
+ requirements:
222
+ - - ">="
223
+ - !ruby/object:Gem::Version
224
+ version: 2.6.0
225
+ required_rubygems_version: !ruby/object:Gem::Requirement
226
+ requirements:
227
+ - - ">="
228
+ - !ruby/object:Gem::Version
229
+ version: '0'
230
+ requirements: []
231
+ rubygems_version: 3.4.10
232
+ signing_key:
233
+ specification_version: 4
234
+ summary: A Tailwind CSS theme for the Administrate gem.
235
+ test_files: []