arara 0.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (154) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +38 -0
  3. data/Rakefile +32 -0
  4. data/app/assets/config/arara_manifest.js +1 -0
  5. data/app/assets/javascripts/arara.js +603 -0
  6. data/app/assets/stylesheets/arara/application.css +15 -0
  7. data/app/components/arara.rb +2 -0
  8. data/app/components/arara/base_component.rb +62 -0
  9. data/app/components/arara/button_component.html.erb +7 -0
  10. data/app/components/arara/button_component.rb +50 -0
  11. data/app/components/arara/card_action_buttons_component.html.erb +3 -0
  12. data/app/components/arara/card_action_buttons_component.rb +15 -0
  13. data/app/components/arara/card_action_icons_component.html.erb +3 -0
  14. data/app/components/arara/card_action_icons_component.rb +15 -0
  15. data/app/components/arara/card_actions_component.html.erb +3 -0
  16. data/app/components/arara/card_actions_component.rb +15 -0
  17. data/app/components/arara/card_component.html.erb +3 -0
  18. data/app/components/arara/card_component.rb +15 -0
  19. data/app/components/arara/card_media_component.html.erb +3 -0
  20. data/app/components/arara/card_media_component.rb +20 -0
  21. data/app/components/arara/card_media_content_component.html.erb +3 -0
  22. data/app/components/arara/card_media_content_component.rb +15 -0
  23. data/app/components/arara/card_primary_content_component.html.erb +3 -0
  24. data/app/components/arara/card_primary_content_component.rb +18 -0
  25. data/app/components/arara/checkbox_component.html.erb +22 -0
  26. data/app/components/arara/checkbox_component.rb +25 -0
  27. data/app/components/arara/chip_component.html.erb +13 -0
  28. data/app/components/arara/chip_component.rb +22 -0
  29. data/app/components/arara/chipset_component.html.erb +6 -0
  30. data/app/components/arara/chipset_component.rb +23 -0
  31. data/app/components/arara/data_table_body_cell_component.html.erb +3 -0
  32. data/app/components/arara/data_table_body_cell_component.rb +18 -0
  33. data/app/components/arara/data_table_body_checkbox_component.html.erb +11 -0
  34. data/app/components/arara/data_table_body_checkbox_component.rb +25 -0
  35. data/app/components/arara/data_table_body_component.html.erb +3 -0
  36. data/app/components/arara/data_table_body_component.rb +15 -0
  37. data/app/components/arara/data_table_body_row_component.html.erb +3 -0
  38. data/app/components/arara/data_table_body_row_component.rb +27 -0
  39. data/app/components/arara/data_table_component.html.erb +5 -0
  40. data/app/components/arara/data_table_component.rb +36 -0
  41. data/app/components/arara/data_table_header_cell_component.html.erb +3 -0
  42. data/app/components/arara/data_table_header_cell_component.rb +24 -0
  43. data/app/components/arara/data_table_header_checkbox_component.html.erb +11 -0
  44. data/app/components/arara/data_table_header_checkbox_component.rb +25 -0
  45. data/app/components/arara/data_table_header_component.html.erb +3 -0
  46. data/app/components/arara/data_table_header_component.rb +11 -0
  47. data/app/components/arara/data_table_header_row_component.html.erb +3 -0
  48. data/app/components/arara/data_table_header_row_component.rb +15 -0
  49. data/app/components/arara/dialog_button_component.html.erb +4 -0
  50. data/app/components/arara/dialog_button_component.rb +31 -0
  51. data/app/components/arara/dialog_component.html.erb +8 -0
  52. data/app/components/arara/dialog_component.rb +34 -0
  53. data/app/components/arara/dialog_content_component.html.erb +3 -0
  54. data/app/components/arara/dialog_content_component.rb +15 -0
  55. data/app/components/arara/dialog_footer_component.html.erb +3 -0
  56. data/app/components/arara/dialog_footer_component.rb +15 -0
  57. data/app/components/arara/dialog_title_component.html.erb +3 -0
  58. data/app/components/arara/dialog_title_component.rb +16 -0
  59. data/app/components/arara/elevation_component.html.erb +3 -0
  60. data/app/components/arara/elevation_component.rb +19 -0
  61. data/app/components/arara/fab_component.html.erb +13 -0
  62. data/app/components/arara/fab_component.rb +42 -0
  63. data/app/components/arara/fab_icon_component.html.erb +3 -0
  64. data/app/components/arara/fab_icon_component.rb +15 -0
  65. data/app/components/arara/form_builder.rb +142 -0
  66. data/app/components/arara/form_field_component.html.erb +3 -0
  67. data/app/components/arara/form_field_component.rb +15 -0
  68. data/app/components/arara/google_calendar/menu_item_component.html.erb +11 -0
  69. data/app/components/arara/google_calendar/menu_item_component.rb +34 -0
  70. data/app/components/arara/google_calendar/nav_bar_component.html.erb +176 -0
  71. data/app/components/arara/google_calendar/nav_bar_component.rb +6 -0
  72. data/app/components/arara/icon_button_component.html.erb +3 -0
  73. data/app/components/arara/icon_button_component.rb +42 -0
  74. data/app/components/arara/icon_toggle_component.html.erb +3 -0
  75. data/app/components/arara/icon_toggle_component.rb +18 -0
  76. data/app/components/arara/material_icon_component.html.erb +3 -0
  77. data/app/components/arara/material_icon_component.rb +18 -0
  78. data/app/components/arara/menu_component.html.erb +5 -0
  79. data/app/components/arara/menu_component.rb +19 -0
  80. data/app/components/arara/menu_divider_component.html.erb +1 -0
  81. data/app/components/arara/menu_divider_component.rb +19 -0
  82. data/app/components/arara/menu_item_component.html.erb +3 -0
  83. data/app/components/arara/menu_item_component.rb +22 -0
  84. data/app/components/arara/nav_bar_component.html.erb +293 -0
  85. data/app/components/arara/nav_bar_component.rb +7 -0
  86. data/app/components/arara/radio_button_component.html.erb +8 -0
  87. data/app/components/arara/radio_button_component.rb +35 -0
  88. data/app/components/arara/select_component.html.erb +22 -0
  89. data/app/components/arara/select_component.rb +27 -0
  90. data/app/components/arara/select_item_component.html.erb +3 -0
  91. data/app/components/arara/select_item_component.rb +45 -0
  92. data/app/components/arara/step_component.html.erb +27 -0
  93. data/app/components/arara/step_component.rb +100 -0
  94. data/app/components/arara/step_connector_component.html.erb +4 -0
  95. data/app/components/arara/step_connector_component.rb +31 -0
  96. data/app/components/arara/stepper_component.html.erb +3 -0
  97. data/app/components/arara/stepper_component.rb +20 -0
  98. data/app/components/arara/switch_component.html.erb +8 -0
  99. data/app/components/arara/switch_component.rb +35 -0
  100. data/app/components/arara/tags.rb +2 -0
  101. data/app/components/arara/tags/check_box.rb +63 -0
  102. data/app/components/arara/tags/chip_choice.rb +81 -0
  103. data/app/components/arara/tags/chipset.rb +39 -0
  104. data/app/components/arara/tags/country_select.rb +110 -0
  105. data/app/components/arara/tags/label.rb +78 -0
  106. data/app/components/arara/tags/password_field.rb +16 -0
  107. data/app/components/arara/tags/radio_button.rb +31 -0
  108. data/app/components/arara/tags/select.rb +120 -0
  109. data/app/components/arara/tags/text_area.rb +25 -0
  110. data/app/components/arara/tags/text_field.rb +31 -0
  111. data/app/components/arara/text_field_component.html.erb +47 -0
  112. data/app/components/arara/text_field_component.rb +101 -0
  113. data/app/components/arara/typography_component.html.erb +1 -0
  114. data/app/components/arara/typography_component.rb +51 -0
  115. data/app/controllers/arara/application_controller.rb +5 -0
  116. data/app/helpers/arara/application_helper.rb +4 -0
  117. data/app/javascript/arara/controllers/body_class_toggler_controller.js +20 -0
  118. data/app/javascript/arara/controllers/counter_controller.js +22 -0
  119. data/app/javascript/arara/controllers/demo_dialog_controller.js +24 -0
  120. data/app/javascript/arara/controllers/mdc_chip_set_controller.js +18 -0
  121. data/app/javascript/arara/controllers/mdc_data_table_controller.js +18 -0
  122. data/app/javascript/arara/controllers/mdc_form_field_controller.js +40 -0
  123. data/app/javascript/arara/controllers/mdc_icon_toggle_controller.js +18 -0
  124. data/app/javascript/arara/controllers/mdc_linear_progress_controller.js +18 -0
  125. data/app/javascript/arara/controllers/mdc_list_controller.js +23 -0
  126. data/app/javascript/arara/controllers/mdc_menu_controller.js +25 -0
  127. data/app/javascript/arara/controllers/mdc_ripple_controller.js +18 -0
  128. data/app/javascript/arara/controllers/mdc_select_controller.js +27 -0
  129. data/app/javascript/arara/controllers/mdc_slider_controller.js +21 -0
  130. data/app/javascript/arara/controllers/mdc_snackbar_controller.js +38 -0
  131. data/app/javascript/arara/controllers/mdc_switch_controller.js +18 -0
  132. data/app/javascript/arara/controllers/mdc_tab_bar_controller.js +18 -0
  133. data/app/javascript/arara/controllers/mdc_text_field_controller.js +35 -0
  134. data/app/javascript/arara/controllers/mdc_top_app_bar_controller.js +18 -0
  135. data/app/javascript/arara/controllers/rails_chip_set_choice_controller.js +31 -0
  136. data/app/javascript/arara/controllers/rails_chip_set_filter_controller.js +39 -0
  137. data/app/javascript/arara/controllers/remote_form_controller.js +79 -0
  138. data/app/javascript/arara/helpers/sum.js +5 -0
  139. data/app/javascript/arara/index.js +65 -0
  140. data/app/javascript/arara/scss/_material_design.scss +34 -0
  141. data/app/javascript/arara/scss/_tailwind.scss +4 -0
  142. data/app/javascript/arara/scss/arara.scss +5 -0
  143. data/app/javascript/arara/scss/material_design/_custom.scss +61 -0
  144. data/app/javascript/arara/scss/tailwind/_ripple_workaround.scss +22 -0
  145. data/app/jobs/arara/application_job.rb +4 -0
  146. data/app/mailers/arara/application_mailer.rb +6 -0
  147. data/app/models/arara/application_record.rb +5 -0
  148. data/app/views/layouts/arara/application.html.erb +15 -0
  149. data/config/routes.rb +2 -0
  150. data/lib/arara.rb +5 -0
  151. data/lib/arara/engine.rb +7 -0
  152. data/lib/arara/version.rb +3 -0
  153. data/lib/tasks/arara_tasks.rake +4 -0
  154. metadata +238 -0
@@ -0,0 +1,4 @@
1
+ @import "tailwindcss/base";
2
+ @import "./tailwind/_ripple_workaround";
3
+ @import "tailwindcss/components";
4
+ @import "tailwindcss/utilities";
@@ -0,0 +1,5 @@
1
+ // Tailwind
2
+ @import "./_tailwind";
3
+
4
+ // Material Design
5
+ @import "./_material_design.scss";
@@ -0,0 +1,61 @@
1
+ h1 {
2
+ margin: 0.67em 0;
3
+ }
4
+
5
+ h2 {
6
+ font-size: 1.5em;
7
+ margin-block-start: 0.83em;
8
+ margin-block-end: 0.83em;
9
+ margin-inline-start: 0px;
10
+ margin-inline-end: 0px;
11
+ }
12
+
13
+ h3 {
14
+ margin-block-start: 1em;
15
+ margin-block-end: 1em;
16
+ margin-inline-start: 0px;
17
+ margin-inline-end: 0px;
18
+ }
19
+
20
+ h4 {
21
+ margin-block-start: 1.33em;
22
+ margin-block-end: 1.33em;
23
+ margin-inline-start: 0px;
24
+ margin-inline-end: 0px;
25
+ font-weight: bold;
26
+ }
27
+
28
+ h5 {
29
+ margin-block-start: 1.67em;
30
+ margin-block-end: 1.67em;
31
+ margin-inline-start: 0px;
32
+ margin-inline-end: 0px;
33
+ font-weight: bold;
34
+ }
35
+
36
+ h6 {
37
+ margin-block-start: 2.33em;
38
+ margin-block-end: 2.33em;
39
+ margin-inline-start: 0px;
40
+ margin-inline-end: 0px;
41
+ }
42
+
43
+ p {
44
+ margin-block-start: 1em;
45
+ margin-block-end: 1em;
46
+ margin-inline-start: 0px;
47
+ margin-inline-end: 0px;
48
+ }
49
+
50
+ img {
51
+ border-style: none;
52
+ }
53
+
54
+ // what does it do?
55
+ .mdc-dialog__content a:focus {
56
+ outline: 1px solid currentColor;
57
+ }
58
+
59
+ .mdc-icon-button {
60
+ line-height: normal;
61
+ }
@@ -0,0 +1,22 @@
1
+ // Workaround to make Ripple work
2
+ // https://github.com/tailwindcss/tailwindcss/issues/938#issuecomment-495935593
3
+ * {
4
+ border-width: 1px;
5
+ border-style: none;
6
+
7
+ &::before {
8
+ border-width: 1px;
9
+ border-style: none;
10
+ }
11
+
12
+ &::after {
13
+ border-width: 1px;
14
+ border-style: none;
15
+ }
16
+ }
17
+
18
+ .mdc-icon-button, .mdc-button, .mdc-tab {
19
+ &:focus {
20
+ outline: 0;
21
+ }
22
+ }
@@ -0,0 +1,4 @@
1
+ module Arara
2
+ class ApplicationJob < ActiveJob::Base
3
+ end
4
+ end
@@ -0,0 +1,6 @@
1
+ module Arara
2
+ class ApplicationMailer < ActionMailer::Base
3
+ default from: 'from@example.com'
4
+ layout 'mailer'
5
+ end
6
+ end
@@ -0,0 +1,5 @@
1
+ module Arara
2
+ class ApplicationRecord < ActiveRecord::Base
3
+ self.abstract_class = true
4
+ end
5
+ end
@@ -0,0 +1,15 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Arara</title>
5
+ <%= csrf_meta_tags %>
6
+ <%= csp_meta_tag %>
7
+
8
+ <%= stylesheet_link_tag "arara/application", media: "all" %>
9
+ </head>
10
+ <body>
11
+
12
+ <%= yield %>
13
+
14
+ </body>
15
+ </html>
@@ -0,0 +1,2 @@
1
+ Arara::Engine.routes.draw do
2
+ end
@@ -0,0 +1,5 @@
1
+ require "arara/engine"
2
+
3
+ module Arara
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,7 @@
1
+ require 'action_view/component/railtie'
2
+
3
+ module Arara
4
+ class Engine < ::Rails::Engine
5
+ isolate_namespace Arara
6
+ end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Arara
2
+ VERSION = '0.2.0'
3
+ end
@@ -0,0 +1,4 @@
1
+ # desc "Explaining what the task does"
2
+ # task :arara do
3
+ # # Task goes here
4
+ # end
metadata ADDED
@@ -0,0 +1,238 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: arara
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: ruby
6
+ authors:
7
+ - Celso Fernandes
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-08 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: '6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: actionview-component
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: sqlite3
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ description: Material Design based theme for Ruby on Rails, using stimulus for JS
56
+ and ActionView Components for its components
57
+ email:
58
+ - celso.fernandes@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - README.md
64
+ - Rakefile
65
+ - app/assets/config/arara_manifest.js
66
+ - app/assets/javascripts/arara.js
67
+ - app/assets/stylesheets/arara/application.css
68
+ - app/components/arara.rb
69
+ - app/components/arara/base_component.rb
70
+ - app/components/arara/button_component.html.erb
71
+ - app/components/arara/button_component.rb
72
+ - app/components/arara/card_action_buttons_component.html.erb
73
+ - app/components/arara/card_action_buttons_component.rb
74
+ - app/components/arara/card_action_icons_component.html.erb
75
+ - app/components/arara/card_action_icons_component.rb
76
+ - app/components/arara/card_actions_component.html.erb
77
+ - app/components/arara/card_actions_component.rb
78
+ - app/components/arara/card_component.html.erb
79
+ - app/components/arara/card_component.rb
80
+ - app/components/arara/card_media_component.html.erb
81
+ - app/components/arara/card_media_component.rb
82
+ - app/components/arara/card_media_content_component.html.erb
83
+ - app/components/arara/card_media_content_component.rb
84
+ - app/components/arara/card_primary_content_component.html.erb
85
+ - app/components/arara/card_primary_content_component.rb
86
+ - app/components/arara/checkbox_component.html.erb
87
+ - app/components/arara/checkbox_component.rb
88
+ - app/components/arara/chip_component.html.erb
89
+ - app/components/arara/chip_component.rb
90
+ - app/components/arara/chipset_component.html.erb
91
+ - app/components/arara/chipset_component.rb
92
+ - app/components/arara/data_table_body_cell_component.html.erb
93
+ - app/components/arara/data_table_body_cell_component.rb
94
+ - app/components/arara/data_table_body_checkbox_component.html.erb
95
+ - app/components/arara/data_table_body_checkbox_component.rb
96
+ - app/components/arara/data_table_body_component.html.erb
97
+ - app/components/arara/data_table_body_component.rb
98
+ - app/components/arara/data_table_body_row_component.html.erb
99
+ - app/components/arara/data_table_body_row_component.rb
100
+ - app/components/arara/data_table_component.html.erb
101
+ - app/components/arara/data_table_component.rb
102
+ - app/components/arara/data_table_header_cell_component.html.erb
103
+ - app/components/arara/data_table_header_cell_component.rb
104
+ - app/components/arara/data_table_header_checkbox_component.html.erb
105
+ - app/components/arara/data_table_header_checkbox_component.rb
106
+ - app/components/arara/data_table_header_component.html.erb
107
+ - app/components/arara/data_table_header_component.rb
108
+ - app/components/arara/data_table_header_row_component.html.erb
109
+ - app/components/arara/data_table_header_row_component.rb
110
+ - app/components/arara/dialog_button_component.html.erb
111
+ - app/components/arara/dialog_button_component.rb
112
+ - app/components/arara/dialog_component.html.erb
113
+ - app/components/arara/dialog_component.rb
114
+ - app/components/arara/dialog_content_component.html.erb
115
+ - app/components/arara/dialog_content_component.rb
116
+ - app/components/arara/dialog_footer_component.html.erb
117
+ - app/components/arara/dialog_footer_component.rb
118
+ - app/components/arara/dialog_title_component.html.erb
119
+ - app/components/arara/dialog_title_component.rb
120
+ - app/components/arara/elevation_component.html.erb
121
+ - app/components/arara/elevation_component.rb
122
+ - app/components/arara/fab_component.html.erb
123
+ - app/components/arara/fab_component.rb
124
+ - app/components/arara/fab_icon_component.html.erb
125
+ - app/components/arara/fab_icon_component.rb
126
+ - app/components/arara/form_builder.rb
127
+ - app/components/arara/form_field_component.html.erb
128
+ - app/components/arara/form_field_component.rb
129
+ - app/components/arara/google_calendar/menu_item_component.html.erb
130
+ - app/components/arara/google_calendar/menu_item_component.rb
131
+ - app/components/arara/google_calendar/nav_bar_component.html.erb
132
+ - app/components/arara/google_calendar/nav_bar_component.rb
133
+ - app/components/arara/icon_button_component.html.erb
134
+ - app/components/arara/icon_button_component.rb
135
+ - app/components/arara/icon_toggle_component.html.erb
136
+ - app/components/arara/icon_toggle_component.rb
137
+ - app/components/arara/material_icon_component.html.erb
138
+ - app/components/arara/material_icon_component.rb
139
+ - app/components/arara/menu_component.html.erb
140
+ - app/components/arara/menu_component.rb
141
+ - app/components/arara/menu_divider_component.html.erb
142
+ - app/components/arara/menu_divider_component.rb
143
+ - app/components/arara/menu_item_component.html.erb
144
+ - app/components/arara/menu_item_component.rb
145
+ - app/components/arara/nav_bar_component.html.erb
146
+ - app/components/arara/nav_bar_component.rb
147
+ - app/components/arara/radio_button_component.html.erb
148
+ - app/components/arara/radio_button_component.rb
149
+ - app/components/arara/select_component.html.erb
150
+ - app/components/arara/select_component.rb
151
+ - app/components/arara/select_item_component.html.erb
152
+ - app/components/arara/select_item_component.rb
153
+ - app/components/arara/step_component.html.erb
154
+ - app/components/arara/step_component.rb
155
+ - app/components/arara/step_connector_component.html.erb
156
+ - app/components/arara/step_connector_component.rb
157
+ - app/components/arara/stepper_component.html.erb
158
+ - app/components/arara/stepper_component.rb
159
+ - app/components/arara/switch_component.html.erb
160
+ - app/components/arara/switch_component.rb
161
+ - app/components/arara/tags.rb
162
+ - app/components/arara/tags/check_box.rb
163
+ - app/components/arara/tags/chip_choice.rb
164
+ - app/components/arara/tags/chipset.rb
165
+ - app/components/arara/tags/country_select.rb
166
+ - app/components/arara/tags/label.rb
167
+ - app/components/arara/tags/password_field.rb
168
+ - app/components/arara/tags/radio_button.rb
169
+ - app/components/arara/tags/select.rb
170
+ - app/components/arara/tags/text_area.rb
171
+ - app/components/arara/tags/text_field.rb
172
+ - app/components/arara/text_field_component.html.erb
173
+ - app/components/arara/text_field_component.rb
174
+ - app/components/arara/typography_component.html.erb
175
+ - app/components/arara/typography_component.rb
176
+ - app/controllers/arara/application_controller.rb
177
+ - app/helpers/arara/application_helper.rb
178
+ - app/javascript/arara/controllers/body_class_toggler_controller.js
179
+ - app/javascript/arara/controllers/counter_controller.js
180
+ - app/javascript/arara/controllers/demo_dialog_controller.js
181
+ - app/javascript/arara/controllers/mdc_chip_set_controller.js
182
+ - app/javascript/arara/controllers/mdc_data_table_controller.js
183
+ - app/javascript/arara/controllers/mdc_form_field_controller.js
184
+ - app/javascript/arara/controllers/mdc_icon_toggle_controller.js
185
+ - app/javascript/arara/controllers/mdc_linear_progress_controller.js
186
+ - app/javascript/arara/controllers/mdc_list_controller.js
187
+ - app/javascript/arara/controllers/mdc_menu_controller.js
188
+ - app/javascript/arara/controllers/mdc_ripple_controller.js
189
+ - app/javascript/arara/controllers/mdc_select_controller.js
190
+ - app/javascript/arara/controllers/mdc_slider_controller.js
191
+ - app/javascript/arara/controllers/mdc_snackbar_controller.js
192
+ - app/javascript/arara/controllers/mdc_switch_controller.js
193
+ - app/javascript/arara/controllers/mdc_tab_bar_controller.js
194
+ - app/javascript/arara/controllers/mdc_text_field_controller.js
195
+ - app/javascript/arara/controllers/mdc_top_app_bar_controller.js
196
+ - app/javascript/arara/controllers/rails_chip_set_choice_controller.js
197
+ - app/javascript/arara/controllers/rails_chip_set_filter_controller.js
198
+ - app/javascript/arara/controllers/remote_form_controller.js
199
+ - app/javascript/arara/helpers/sum.js
200
+ - app/javascript/arara/index.js
201
+ - app/javascript/arara/scss/_material_design.scss
202
+ - app/javascript/arara/scss/_tailwind.scss
203
+ - app/javascript/arara/scss/arara.scss
204
+ - app/javascript/arara/scss/material_design/_custom.scss
205
+ - app/javascript/arara/scss/tailwind/_ripple_workaround.scss
206
+ - app/jobs/arara/application_job.rb
207
+ - app/mailers/arara/application_mailer.rb
208
+ - app/models/arara/application_record.rb
209
+ - app/views/layouts/arara/application.html.erb
210
+ - config/routes.rb
211
+ - lib/arara.rb
212
+ - lib/arara/engine.rb
213
+ - lib/arara/version.rb
214
+ - lib/tasks/arara_tasks.rake
215
+ homepage: https://github.com/fernandes/arara
216
+ licenses:
217
+ - MIT
218
+ metadata: {}
219
+ post_install_message:
220
+ rdoc_options: []
221
+ require_paths:
222
+ - lib
223
+ required_ruby_version: !ruby/object:Gem::Requirement
224
+ requirements:
225
+ - - ">="
226
+ - !ruby/object:Gem::Version
227
+ version: '0'
228
+ required_rubygems_version: !ruby/object:Gem::Requirement
229
+ requirements:
230
+ - - ">="
231
+ - !ruby/object:Gem::Version
232
+ version: '0'
233
+ requirements: []
234
+ rubygems_version: 3.0.1
235
+ signing_key:
236
+ specification_version: 4
237
+ summary: A material design theme for Ruby on Rails
238
+ test_files: []