arara 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +38 -0
- data/Rakefile +32 -0
- data/app/assets/config/arara_manifest.js +1 -0
- data/app/assets/javascripts/arara.js +603 -0
- data/app/assets/stylesheets/arara/application.css +15 -0
- data/app/components/arara.rb +2 -0
- data/app/components/arara/base_component.rb +62 -0
- data/app/components/arara/button_component.html.erb +7 -0
- data/app/components/arara/button_component.rb +50 -0
- data/app/components/arara/card_action_buttons_component.html.erb +3 -0
- data/app/components/arara/card_action_buttons_component.rb +15 -0
- data/app/components/arara/card_action_icons_component.html.erb +3 -0
- data/app/components/arara/card_action_icons_component.rb +15 -0
- data/app/components/arara/card_actions_component.html.erb +3 -0
- data/app/components/arara/card_actions_component.rb +15 -0
- data/app/components/arara/card_component.html.erb +3 -0
- data/app/components/arara/card_component.rb +15 -0
- data/app/components/arara/card_media_component.html.erb +3 -0
- data/app/components/arara/card_media_component.rb +20 -0
- data/app/components/arara/card_media_content_component.html.erb +3 -0
- data/app/components/arara/card_media_content_component.rb +15 -0
- data/app/components/arara/card_primary_content_component.html.erb +3 -0
- data/app/components/arara/card_primary_content_component.rb +18 -0
- data/app/components/arara/checkbox_component.html.erb +22 -0
- data/app/components/arara/checkbox_component.rb +25 -0
- data/app/components/arara/chip_component.html.erb +13 -0
- data/app/components/arara/chip_component.rb +22 -0
- data/app/components/arara/chipset_component.html.erb +6 -0
- data/app/components/arara/chipset_component.rb +23 -0
- data/app/components/arara/data_table_body_cell_component.html.erb +3 -0
- data/app/components/arara/data_table_body_cell_component.rb +18 -0
- data/app/components/arara/data_table_body_checkbox_component.html.erb +11 -0
- data/app/components/arara/data_table_body_checkbox_component.rb +25 -0
- data/app/components/arara/data_table_body_component.html.erb +3 -0
- data/app/components/arara/data_table_body_component.rb +15 -0
- data/app/components/arara/data_table_body_row_component.html.erb +3 -0
- data/app/components/arara/data_table_body_row_component.rb +27 -0
- data/app/components/arara/data_table_component.html.erb +5 -0
- data/app/components/arara/data_table_component.rb +36 -0
- data/app/components/arara/data_table_header_cell_component.html.erb +3 -0
- data/app/components/arara/data_table_header_cell_component.rb +24 -0
- data/app/components/arara/data_table_header_checkbox_component.html.erb +11 -0
- data/app/components/arara/data_table_header_checkbox_component.rb +25 -0
- data/app/components/arara/data_table_header_component.html.erb +3 -0
- data/app/components/arara/data_table_header_component.rb +11 -0
- data/app/components/arara/data_table_header_row_component.html.erb +3 -0
- data/app/components/arara/data_table_header_row_component.rb +15 -0
- data/app/components/arara/dialog_button_component.html.erb +4 -0
- data/app/components/arara/dialog_button_component.rb +31 -0
- data/app/components/arara/dialog_component.html.erb +8 -0
- data/app/components/arara/dialog_component.rb +34 -0
- data/app/components/arara/dialog_content_component.html.erb +3 -0
- data/app/components/arara/dialog_content_component.rb +15 -0
- data/app/components/arara/dialog_footer_component.html.erb +3 -0
- data/app/components/arara/dialog_footer_component.rb +15 -0
- data/app/components/arara/dialog_title_component.html.erb +3 -0
- data/app/components/arara/dialog_title_component.rb +16 -0
- data/app/components/arara/elevation_component.html.erb +3 -0
- data/app/components/arara/elevation_component.rb +19 -0
- data/app/components/arara/fab_component.html.erb +13 -0
- data/app/components/arara/fab_component.rb +42 -0
- data/app/components/arara/fab_icon_component.html.erb +3 -0
- data/app/components/arara/fab_icon_component.rb +15 -0
- data/app/components/arara/form_builder.rb +142 -0
- data/app/components/arara/form_field_component.html.erb +3 -0
- data/app/components/arara/form_field_component.rb +15 -0
- data/app/components/arara/google_calendar/menu_item_component.html.erb +11 -0
- data/app/components/arara/google_calendar/menu_item_component.rb +34 -0
- data/app/components/arara/google_calendar/nav_bar_component.html.erb +176 -0
- data/app/components/arara/google_calendar/nav_bar_component.rb +6 -0
- data/app/components/arara/icon_button_component.html.erb +3 -0
- data/app/components/arara/icon_button_component.rb +42 -0
- data/app/components/arara/icon_toggle_component.html.erb +3 -0
- data/app/components/arara/icon_toggle_component.rb +18 -0
- data/app/components/arara/material_icon_component.html.erb +3 -0
- data/app/components/arara/material_icon_component.rb +18 -0
- data/app/components/arara/menu_component.html.erb +5 -0
- data/app/components/arara/menu_component.rb +19 -0
- data/app/components/arara/menu_divider_component.html.erb +1 -0
- data/app/components/arara/menu_divider_component.rb +19 -0
- data/app/components/arara/menu_item_component.html.erb +3 -0
- data/app/components/arara/menu_item_component.rb +22 -0
- data/app/components/arara/nav_bar_component.html.erb +293 -0
- data/app/components/arara/nav_bar_component.rb +7 -0
- data/app/components/arara/radio_button_component.html.erb +8 -0
- data/app/components/arara/radio_button_component.rb +35 -0
- data/app/components/arara/select_component.html.erb +22 -0
- data/app/components/arara/select_component.rb +27 -0
- data/app/components/arara/select_item_component.html.erb +3 -0
- data/app/components/arara/select_item_component.rb +45 -0
- data/app/components/arara/step_component.html.erb +27 -0
- data/app/components/arara/step_component.rb +100 -0
- data/app/components/arara/step_connector_component.html.erb +4 -0
- data/app/components/arara/step_connector_component.rb +31 -0
- data/app/components/arara/stepper_component.html.erb +3 -0
- data/app/components/arara/stepper_component.rb +20 -0
- data/app/components/arara/switch_component.html.erb +8 -0
- data/app/components/arara/switch_component.rb +35 -0
- data/app/components/arara/tags.rb +2 -0
- data/app/components/arara/tags/check_box.rb +63 -0
- data/app/components/arara/tags/chip_choice.rb +81 -0
- data/app/components/arara/tags/chipset.rb +39 -0
- data/app/components/arara/tags/country_select.rb +110 -0
- data/app/components/arara/tags/label.rb +78 -0
- data/app/components/arara/tags/password_field.rb +16 -0
- data/app/components/arara/tags/radio_button.rb +31 -0
- data/app/components/arara/tags/select.rb +120 -0
- data/app/components/arara/tags/text_area.rb +25 -0
- data/app/components/arara/tags/text_field.rb +31 -0
- data/app/components/arara/text_field_component.html.erb +47 -0
- data/app/components/arara/text_field_component.rb +101 -0
- data/app/components/arara/typography_component.html.erb +1 -0
- data/app/components/arara/typography_component.rb +51 -0
- data/app/controllers/arara/application_controller.rb +5 -0
- data/app/helpers/arara/application_helper.rb +4 -0
- data/app/javascript/arara/controllers/body_class_toggler_controller.js +20 -0
- data/app/javascript/arara/controllers/counter_controller.js +22 -0
- data/app/javascript/arara/controllers/demo_dialog_controller.js +24 -0
- data/app/javascript/arara/controllers/mdc_chip_set_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_data_table_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_form_field_controller.js +40 -0
- data/app/javascript/arara/controllers/mdc_icon_toggle_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_linear_progress_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_list_controller.js +23 -0
- data/app/javascript/arara/controllers/mdc_menu_controller.js +25 -0
- data/app/javascript/arara/controllers/mdc_ripple_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_select_controller.js +27 -0
- data/app/javascript/arara/controllers/mdc_slider_controller.js +21 -0
- data/app/javascript/arara/controllers/mdc_snackbar_controller.js +38 -0
- data/app/javascript/arara/controllers/mdc_switch_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_tab_bar_controller.js +18 -0
- data/app/javascript/arara/controllers/mdc_text_field_controller.js +35 -0
- data/app/javascript/arara/controllers/mdc_top_app_bar_controller.js +18 -0
- data/app/javascript/arara/controllers/rails_chip_set_choice_controller.js +31 -0
- data/app/javascript/arara/controllers/rails_chip_set_filter_controller.js +39 -0
- data/app/javascript/arara/controllers/remote_form_controller.js +79 -0
- data/app/javascript/arara/helpers/sum.js +5 -0
- data/app/javascript/arara/index.js +65 -0
- data/app/javascript/arara/scss/_material_design.scss +34 -0
- data/app/javascript/arara/scss/_tailwind.scss +4 -0
- data/app/javascript/arara/scss/arara.scss +5 -0
- data/app/javascript/arara/scss/material_design/_custom.scss +61 -0
- data/app/javascript/arara/scss/tailwind/_ripple_workaround.scss +22 -0
- data/app/jobs/arara/application_job.rb +4 -0
- data/app/mailers/arara/application_mailer.rb +6 -0
- data/app/models/arara/application_record.rb +5 -0
- data/app/views/layouts/arara/application.html.erb +15 -0
- data/config/routes.rb +2 -0
- data/lib/arara.rb +5 -0
- data/lib/arara/engine.rb +7 -0
- data/lib/arara/version.rb +3 -0
- data/lib/tasks/arara_tasks.rake +4 -0
- metadata +238 -0
@@ -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
|
+
}
|
data/config/routes.rb
ADDED
data/lib/arara.rb
ADDED
data/lib/arara/engine.rb
ADDED
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: []
|