reports_kits 0.7.5 → 0.7.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +6 -0
- data/.rubocop.yml +85 -0
- data/.travis.yml +21 -0
- data/Appraisals +27 -0
- data/Gemfile +3 -0
- data/MIT-LICENSE +20 -0
- data/README.md +35 -0
- data/Rakefile +2 -0
- data/app/assets/javascripts/reports_kits/application.js +14 -0
- data/app/assets/javascripts/reports_kits/lib/_init.js +9 -0
- data/app/assets/javascripts/reports_kits/lib/chart.js +73 -0
- data/app/assets/javascripts/reports_kits/lib/report.js +135 -0
- data/app/assets/javascripts/reports_kits/lib/table.js +87 -0
- data/app/assets/javascripts/reports_kits/vendor/chart.js +12269 -0
- data/app/assets/javascripts/reports_kits/vendor/daterangepicker.js +1627 -0
- data/app/assets/javascripts/reports_kits/vendor/jquery.tablesorter.min.js +4 -0
- data/app/assets/javascripts/reports_kits/vendor/moment.js +4040 -0
- data/app/assets/javascripts/reports_kits/vendor/select2.full.js +6436 -0
- data/app/assets/stylesheets/reports_kits/application.css.scss +3 -0
- data/app/assets/stylesheets/reports_kits/reports.css.sass +33 -0
- data/app/assets/stylesheets/reports_kits/select2_overrides.css.sass +7 -0
- data/app/assets/stylesheets/reports_kits/vendor/daterangepicker.css +269 -0
- data/app/assets/stylesheets/reports_kits/vendor/select2-bootstrap.css +721 -0
- data/app/assets/stylesheets/reports_kits/vendor/select2.css +484 -0
- data/config/initializers/mime_types.rb +1 -0
- data/config/routes.rb +10 -0
- data/docs/images/demo.gif +0 -0
- data/docs/images/users_by_created_at.png +0 -0
- data/gemfiles/mysql.gemfile +7 -0
- data/gemfiles/mysql.gemfile.lock +167 -0
- data/gemfiles/postgresql.gemfile +7 -0
- data/gemfiles/postgresql.gemfile.lock +165 -0
- data/gemfiles/postgresql_rails_5.1.4.gemfile +8 -0
- data/gemfiles/postgresql_rails_5.1.4.gemfile.lock +168 -0
- data/gemfiles/rails_4_mysql.gemfile +8 -0
- data/gemfiles/rails_4_mysql.gemfile.lock +165 -0
- data/gemfiles/rails_4_postgresql.gemfile +8 -0
- data/gemfiles/rails_4_postgresql.gemfile.lock +163 -0
- data/gemfiles/rails_5.1.4_postgresql.gemfile +8 -0
- data/gemfiles/rails_5.1.4_postgresql.gemfile.lock +169 -0
- data/gemfiles/rails_5_mysql.gemfile +8 -0
- data/gemfiles/rails_5_mysql.gemfile.lock +171 -0
- data/gemfiles/rails_5_postgresql.gemfile +8 -0
- data/gemfiles/rails_5_postgresql.gemfile.lock +169 -0
- data/lib/reports_kits/base_controller.rb +17 -0
- data/lib/reports_kits/cache.rb +37 -0
- data/lib/reports_kits/configuration.rb +50 -0
- data/lib/reports_kits/engine.rb +21 -0
- data/lib/reports_kits/entity.rb +3 -0
- data/lib/reports_kits/filters_controller.rb +11 -0
- data/lib/reports_kits/form_builder.rb +66 -0
- data/lib/reports_kits/helper.rb +24 -0
- data/lib/reports_kits/model.rb +16 -0
- data/lib/reports_kits/model_configuration.rb +28 -0
- data/lib/reports_kits/normalized_params.rb +16 -0
- data/lib/reports_kits/order.rb +33 -0
- data/lib/reports_kits/relative_time.rb +42 -0
- data/lib/reports_kits/report_builder.rb +88 -0
- data/lib/reports_kits/reports/abstract_series.rb +9 -0
- data/lib/reports_kits/reports/adapters/mysql.rb +26 -0
- data/lib/reports_kits/reports/adapters/postgresql.rb +26 -0
- data/lib/reports_kits/reports/composite_series.rb +48 -0
- data/lib/reports_kits/reports/contextual_filter.rb +19 -0
- data/lib/reports_kits/reports/data/add_table_aggregations.rb +105 -0
- data/lib/reports_kits/reports/data/aggregate_composite.rb +97 -0
- data/lib/reports_kits/reports/data/aggregate_one_dimension.rb +39 -0
- data/lib/reports_kits/reports/data/aggregate_two_dimensions.rb +39 -0
- data/lib/reports_kits/reports/data/chart_data_for_data_method.rb +62 -0
- data/lib/reports_kits/reports/data/chart_options.rb +155 -0
- data/lib/reports_kits/reports/data/format_one_dimension.rb +140 -0
- data/lib/reports_kits/reports/data/format_table.rb +63 -0
- data/lib/reports_kits/reports/data/format_two_dimensions.rb +143 -0
- data/lib/reports_kits/reports/data/generate.rb +156 -0
- data/lib/reports_kits/reports/data/generate_for_properties.rb +97 -0
- data/lib/reports_kits/reports/data/normalize_properties.rb +62 -0
- data/lib/reports_kits/reports/data/populate_one_dimension.rb +54 -0
- data/lib/reports_kits/reports/data/populate_two_dimensions.rb +104 -0
- data/lib/reports_kits/reports/data/utils.rb +178 -0
- data/lib/reports_kits/reports/dimension.rb +27 -0
- data/lib/reports_kits/reports/dimension_with_series.rb +144 -0
- data/lib/reports_kits/reports/filter.rb +29 -0
- data/lib/reports_kits/reports/filter_types/base.rb +48 -0
- data/lib/reports_kits/reports/filter_types/boolean.rb +47 -0
- data/lib/reports_kits/reports/filter_types/datetime.rb +51 -0
- data/lib/reports_kits/reports/filter_types/number.rb +30 -0
- data/lib/reports_kits/reports/filter_types/records.rb +26 -0
- data/lib/reports_kits/reports/filter_types/string.rb +38 -0
- data/lib/reports_kits/reports/filter_with_series.rb +97 -0
- data/lib/reports_kits/reports/generate_autocomplete_method_results.rb +29 -0
- data/lib/reports_kits/reports/generate_autocomplete_results.rb +57 -0
- data/lib/reports_kits/reports/inferrable_configuration.rb +116 -0
- data/lib/reports_kits/reports/model_settings.rb +30 -0
- data/lib/reports_kits/reports/properties.rb +10 -0
- data/lib/reports_kits/reports/properties_to_filter.rb +40 -0
- data/lib/reports_kits/reports/series.rb +121 -0
- data/lib/reports_kits/reports_controller.rb +65 -0
- data/lib/reports_kits/utils.rb +11 -0
- data/lib/reports_kits/value.rb +3 -0
- data/lib/reports_kits/version.rb +3 -0
- data/lib/reports_kits.rb +79 -0
- data/reports_kits.gemspec +26 -0
- data/spec/factories/issue_factory.rb +4 -0
- data/spec/factories/issues_label_factory.rb +4 -0
- data/spec/factories/label_factory.rb +4 -0
- data/spec/factories/pro_repo_factory.rb +5 -0
- data/spec/factories/repo_factory.rb +5 -0
- data/spec/factories/tag_factory.rb +4 -0
- data/spec/fixtures/generate_inputs.yml +254 -0
- data/spec/fixtures/generate_outputs.yml +1216 -0
- data/spec/reports_kit/form_builder_spec.rb +26 -0
- data/spec/reports_kit/relative_time_spec.rb +29 -0
- data/spec/reports_kit/reports/data/generate/contextual_filters_spec.rb +60 -0
- data/spec/reports_kit/reports/data/generate_spec.rb +1371 -0
- data/spec/reports_kit/reports/data/normalize_properties_spec.rb +196 -0
- data/spec/reports_kit/reports/dimension_with_series_spec.rb +67 -0
- data/spec/reports_kit/reports/filter_with_series_spec.rb +39 -0
- data/spec/reports_kit/reports/generate_autocomplete_results_spec.rb +69 -0
- data/spec/spec_helper.rb +77 -0
- data/spec/support/config.rb +41 -0
- data/spec/support/example_data_methods.rb +25 -0
- data/spec/support/factory_girl.rb +5 -0
- data/spec/support/helpers.rb +25 -0
- data/spec/support/models/issue.rb +14 -0
- data/spec/support/models/issues_label.rb +4 -0
- data/spec/support/models/label.rb +5 -0
- data/spec/support/models/pro/repo.rb +5 -0
- data/spec/support/models/pro/special_issue.rb +4 -0
- data/spec/support/models/repo.rb +13 -0
- data/spec/support/models/tag.rb +4 -0
- data/spec/support/schema.rb +39 -0
- metadata +134 -4
@@ -0,0 +1,484 @@
|
|
1
|
+
.select2-container {
|
2
|
+
box-sizing: border-box;
|
3
|
+
display: inline-block;
|
4
|
+
margin: 0;
|
5
|
+
position: relative;
|
6
|
+
vertical-align: middle; }
|
7
|
+
.select2-container .select2-selection--single {
|
8
|
+
box-sizing: border-box;
|
9
|
+
cursor: pointer;
|
10
|
+
display: block;
|
11
|
+
height: 28px;
|
12
|
+
user-select: none;
|
13
|
+
-webkit-user-select: none; }
|
14
|
+
.select2-container .select2-selection--single .select2-selection__rendered {
|
15
|
+
display: block;
|
16
|
+
padding-left: 8px;
|
17
|
+
padding-right: 20px;
|
18
|
+
overflow: hidden;
|
19
|
+
text-overflow: ellipsis;
|
20
|
+
white-space: nowrap; }
|
21
|
+
.select2-container .select2-selection--single .select2-selection__clear {
|
22
|
+
position: relative; }
|
23
|
+
.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
|
24
|
+
padding-right: 8px;
|
25
|
+
padding-left: 20px; }
|
26
|
+
.select2-container .select2-selection--multiple {
|
27
|
+
box-sizing: border-box;
|
28
|
+
cursor: pointer;
|
29
|
+
display: block;
|
30
|
+
min-height: 32px;
|
31
|
+
user-select: none;
|
32
|
+
-webkit-user-select: none; }
|
33
|
+
.select2-container .select2-selection--multiple .select2-selection__rendered {
|
34
|
+
display: inline-block;
|
35
|
+
overflow: hidden;
|
36
|
+
padding-left: 8px;
|
37
|
+
text-overflow: ellipsis;
|
38
|
+
white-space: nowrap; }
|
39
|
+
.select2-container .select2-search--inline {
|
40
|
+
float: left; }
|
41
|
+
.select2-container .select2-search--inline .select2-search__field {
|
42
|
+
box-sizing: border-box;
|
43
|
+
border: none;
|
44
|
+
font-size: 100%;
|
45
|
+
margin-top: 5px;
|
46
|
+
padding: 0; }
|
47
|
+
.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
|
48
|
+
-webkit-appearance: none; }
|
49
|
+
|
50
|
+
.select2-dropdown {
|
51
|
+
background-color: white;
|
52
|
+
border: 1px solid #aaa;
|
53
|
+
border-radius: 4px;
|
54
|
+
box-sizing: border-box;
|
55
|
+
display: block;
|
56
|
+
position: absolute;
|
57
|
+
left: -100000px;
|
58
|
+
width: 100%;
|
59
|
+
z-index: 1051; }
|
60
|
+
|
61
|
+
.select2-results {
|
62
|
+
display: block; }
|
63
|
+
|
64
|
+
.select2-results__options {
|
65
|
+
list-style: none;
|
66
|
+
margin: 0;
|
67
|
+
padding: 0; }
|
68
|
+
|
69
|
+
.select2-results__option {
|
70
|
+
padding: 6px;
|
71
|
+
user-select: none;
|
72
|
+
-webkit-user-select: none; }
|
73
|
+
.select2-results__option[aria-selected] {
|
74
|
+
cursor: pointer; }
|
75
|
+
|
76
|
+
.select2-container--open .select2-dropdown {
|
77
|
+
left: 0; }
|
78
|
+
|
79
|
+
.select2-container--open .select2-dropdown--above {
|
80
|
+
border-bottom: none;
|
81
|
+
border-bottom-left-radius: 0;
|
82
|
+
border-bottom-right-radius: 0; }
|
83
|
+
|
84
|
+
.select2-container--open .select2-dropdown--below {
|
85
|
+
border-top: none;
|
86
|
+
border-top-left-radius: 0;
|
87
|
+
border-top-right-radius: 0; }
|
88
|
+
|
89
|
+
.select2-search--dropdown {
|
90
|
+
display: block;
|
91
|
+
padding: 4px; }
|
92
|
+
.select2-search--dropdown .select2-search__field {
|
93
|
+
padding: 4px;
|
94
|
+
width: 100%;
|
95
|
+
box-sizing: border-box; }
|
96
|
+
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
|
97
|
+
-webkit-appearance: none; }
|
98
|
+
.select2-search--dropdown.select2-search--hide {
|
99
|
+
display: none; }
|
100
|
+
|
101
|
+
.select2-close-mask {
|
102
|
+
border: 0;
|
103
|
+
margin: 0;
|
104
|
+
padding: 0;
|
105
|
+
display: block;
|
106
|
+
position: fixed;
|
107
|
+
left: 0;
|
108
|
+
top: 0;
|
109
|
+
min-height: 100%;
|
110
|
+
min-width: 100%;
|
111
|
+
height: auto;
|
112
|
+
width: auto;
|
113
|
+
opacity: 0;
|
114
|
+
z-index: 99;
|
115
|
+
background-color: #fff;
|
116
|
+
filter: alpha(opacity=0); }
|
117
|
+
|
118
|
+
.select2-hidden-accessible {
|
119
|
+
border: 0 !important;
|
120
|
+
clip: rect(0 0 0 0) !important;
|
121
|
+
height: 1px !important;
|
122
|
+
margin: -1px !important;
|
123
|
+
overflow: hidden !important;
|
124
|
+
padding: 0 !important;
|
125
|
+
position: absolute !important;
|
126
|
+
width: 1px !important; }
|
127
|
+
|
128
|
+
.select2-container--default .select2-selection--single {
|
129
|
+
background-color: #fff;
|
130
|
+
border: 1px solid #aaa;
|
131
|
+
border-radius: 4px; }
|
132
|
+
.select2-container--default .select2-selection--single .select2-selection__rendered {
|
133
|
+
color: #444;
|
134
|
+
line-height: 28px; }
|
135
|
+
.select2-container--default .select2-selection--single .select2-selection__clear {
|
136
|
+
cursor: pointer;
|
137
|
+
float: right;
|
138
|
+
font-weight: bold; }
|
139
|
+
.select2-container--default .select2-selection--single .select2-selection__placeholder {
|
140
|
+
color: #999; }
|
141
|
+
.select2-container--default .select2-selection--single .select2-selection__arrow {
|
142
|
+
height: 26px;
|
143
|
+
position: absolute;
|
144
|
+
top: 1px;
|
145
|
+
right: 1px;
|
146
|
+
width: 20px; }
|
147
|
+
.select2-container--default .select2-selection--single .select2-selection__arrow b {
|
148
|
+
border-color: #888 transparent transparent transparent;
|
149
|
+
border-style: solid;
|
150
|
+
border-width: 5px 4px 0 4px;
|
151
|
+
height: 0;
|
152
|
+
left: 50%;
|
153
|
+
margin-left: -4px;
|
154
|
+
margin-top: -2px;
|
155
|
+
position: absolute;
|
156
|
+
top: 50%;
|
157
|
+
width: 0; }
|
158
|
+
|
159
|
+
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
160
|
+
float: left; }
|
161
|
+
|
162
|
+
.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
163
|
+
left: 1px;
|
164
|
+
right: auto; }
|
165
|
+
|
166
|
+
.select2-container--default.select2-container--disabled .select2-selection--single {
|
167
|
+
background-color: #eee;
|
168
|
+
cursor: default; }
|
169
|
+
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
|
170
|
+
display: none; }
|
171
|
+
|
172
|
+
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
173
|
+
border-color: transparent transparent #888 transparent;
|
174
|
+
border-width: 0 4px 5px 4px; }
|
175
|
+
|
176
|
+
.select2-container--default .select2-selection--multiple {
|
177
|
+
background-color: white;
|
178
|
+
border: 1px solid #aaa;
|
179
|
+
border-radius: 4px;
|
180
|
+
cursor: text; }
|
181
|
+
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
|
182
|
+
box-sizing: border-box;
|
183
|
+
list-style: none;
|
184
|
+
margin: 0;
|
185
|
+
padding: 0 5px;
|
186
|
+
width: 100%; }
|
187
|
+
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
|
188
|
+
list-style: none; }
|
189
|
+
.select2-container--default .select2-selection--multiple .select2-selection__placeholder {
|
190
|
+
color: #999;
|
191
|
+
margin-top: 5px;
|
192
|
+
float: left; }
|
193
|
+
.select2-container--default .select2-selection--multiple .select2-selection__clear {
|
194
|
+
cursor: pointer;
|
195
|
+
float: right;
|
196
|
+
font-weight: bold;
|
197
|
+
margin-top: 5px;
|
198
|
+
margin-right: 10px; }
|
199
|
+
.select2-container--default .select2-selection--multiple .select2-selection__choice {
|
200
|
+
background-color: #e4e4e4;
|
201
|
+
border: 1px solid #aaa;
|
202
|
+
border-radius: 4px;
|
203
|
+
cursor: default;
|
204
|
+
float: left;
|
205
|
+
margin-right: 5px;
|
206
|
+
margin-top: 5px;
|
207
|
+
padding: 0 5px; }
|
208
|
+
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
|
209
|
+
color: #999;
|
210
|
+
cursor: pointer;
|
211
|
+
display: inline-block;
|
212
|
+
font-weight: bold;
|
213
|
+
margin-right: 2px; }
|
214
|
+
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
|
215
|
+
color: #333; }
|
216
|
+
|
217
|
+
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
|
218
|
+
float: right; }
|
219
|
+
|
220
|
+
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
221
|
+
margin-left: 5px;
|
222
|
+
margin-right: auto; }
|
223
|
+
|
224
|
+
.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
225
|
+
margin-left: 2px;
|
226
|
+
margin-right: auto; }
|
227
|
+
|
228
|
+
.select2-container--default.select2-container--focus .select2-selection--multiple {
|
229
|
+
border: solid black 1px;
|
230
|
+
outline: 0; }
|
231
|
+
|
232
|
+
.select2-container--default.select2-container--disabled .select2-selection--multiple {
|
233
|
+
background-color: #eee;
|
234
|
+
cursor: default; }
|
235
|
+
|
236
|
+
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
|
237
|
+
display: none; }
|
238
|
+
|
239
|
+
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
|
240
|
+
border-top-left-radius: 0;
|
241
|
+
border-top-right-radius: 0; }
|
242
|
+
|
243
|
+
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
|
244
|
+
border-bottom-left-radius: 0;
|
245
|
+
border-bottom-right-radius: 0; }
|
246
|
+
|
247
|
+
.select2-container--default .select2-search--dropdown .select2-search__field {
|
248
|
+
border: 1px solid #aaa; }
|
249
|
+
|
250
|
+
.select2-container--default .select2-search--inline .select2-search__field {
|
251
|
+
background: transparent;
|
252
|
+
border: none;
|
253
|
+
outline: 0;
|
254
|
+
box-shadow: none;
|
255
|
+
-webkit-appearance: textfield; }
|
256
|
+
|
257
|
+
.select2-container--default .select2-results > .select2-results__options {
|
258
|
+
max-height: 200px;
|
259
|
+
overflow-y: auto; }
|
260
|
+
|
261
|
+
.select2-container--default .select2-results__option[role=group] {
|
262
|
+
padding: 0; }
|
263
|
+
|
264
|
+
.select2-container--default .select2-results__option[aria-disabled=true] {
|
265
|
+
color: #999; }
|
266
|
+
|
267
|
+
.select2-container--default .select2-results__option[aria-selected=true] {
|
268
|
+
background-color: #ddd; }
|
269
|
+
|
270
|
+
.select2-container--default .select2-results__option .select2-results__option {
|
271
|
+
padding-left: 1em; }
|
272
|
+
.select2-container--default .select2-results__option .select2-results__option .select2-results__group {
|
273
|
+
padding-left: 0; }
|
274
|
+
.select2-container--default .select2-results__option .select2-results__option .select2-results__option {
|
275
|
+
margin-left: -1em;
|
276
|
+
padding-left: 2em; }
|
277
|
+
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
278
|
+
margin-left: -2em;
|
279
|
+
padding-left: 3em; }
|
280
|
+
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
281
|
+
margin-left: -3em;
|
282
|
+
padding-left: 4em; }
|
283
|
+
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
284
|
+
margin-left: -4em;
|
285
|
+
padding-left: 5em; }
|
286
|
+
.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
|
287
|
+
margin-left: -5em;
|
288
|
+
padding-left: 6em; }
|
289
|
+
|
290
|
+
.select2-container--default .select2-results__option--highlighted[aria-selected] {
|
291
|
+
background-color: #5897fb;
|
292
|
+
color: white; }
|
293
|
+
|
294
|
+
.select2-container--default .select2-results__group {
|
295
|
+
cursor: default;
|
296
|
+
display: block;
|
297
|
+
padding: 6px; }
|
298
|
+
|
299
|
+
.select2-container--classic .select2-selection--single {
|
300
|
+
background-color: #f7f7f7;
|
301
|
+
border: 1px solid #aaa;
|
302
|
+
border-radius: 4px;
|
303
|
+
outline: 0;
|
304
|
+
background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
|
305
|
+
background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
|
306
|
+
background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
|
307
|
+
background-repeat: repeat-x;
|
308
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
309
|
+
.select2-container--classic .select2-selection--single:focus {
|
310
|
+
border: 1px solid #5897fb; }
|
311
|
+
.select2-container--classic .select2-selection--single .select2-selection__rendered {
|
312
|
+
color: #444;
|
313
|
+
line-height: 28px; }
|
314
|
+
.select2-container--classic .select2-selection--single .select2-selection__clear {
|
315
|
+
cursor: pointer;
|
316
|
+
float: right;
|
317
|
+
font-weight: bold;
|
318
|
+
margin-right: 10px; }
|
319
|
+
.select2-container--classic .select2-selection--single .select2-selection__placeholder {
|
320
|
+
color: #999; }
|
321
|
+
.select2-container--classic .select2-selection--single .select2-selection__arrow {
|
322
|
+
background-color: #ddd;
|
323
|
+
border: none;
|
324
|
+
border-left: 1px solid #aaa;
|
325
|
+
border-top-right-radius: 4px;
|
326
|
+
border-bottom-right-radius: 4px;
|
327
|
+
height: 26px;
|
328
|
+
position: absolute;
|
329
|
+
top: 1px;
|
330
|
+
right: 1px;
|
331
|
+
width: 20px;
|
332
|
+
background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
333
|
+
background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
|
334
|
+
background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
|
335
|
+
background-repeat: repeat-x;
|
336
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
|
337
|
+
.select2-container--classic .select2-selection--single .select2-selection__arrow b {
|
338
|
+
border-color: #888 transparent transparent transparent;
|
339
|
+
border-style: solid;
|
340
|
+
border-width: 5px 4px 0 4px;
|
341
|
+
height: 0;
|
342
|
+
left: 50%;
|
343
|
+
margin-left: -4px;
|
344
|
+
margin-top: -2px;
|
345
|
+
position: absolute;
|
346
|
+
top: 50%;
|
347
|
+
width: 0; }
|
348
|
+
|
349
|
+
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
|
350
|
+
float: left; }
|
351
|
+
|
352
|
+
.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
|
353
|
+
border: none;
|
354
|
+
border-right: 1px solid #aaa;
|
355
|
+
border-radius: 0;
|
356
|
+
border-top-left-radius: 4px;
|
357
|
+
border-bottom-left-radius: 4px;
|
358
|
+
left: 1px;
|
359
|
+
right: auto; }
|
360
|
+
|
361
|
+
.select2-container--classic.select2-container--open .select2-selection--single {
|
362
|
+
border: 1px solid #5897fb; }
|
363
|
+
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
|
364
|
+
background: transparent;
|
365
|
+
border: none; }
|
366
|
+
.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
|
367
|
+
border-color: transparent transparent #888 transparent;
|
368
|
+
border-width: 0 4px 5px 4px; }
|
369
|
+
|
370
|
+
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
|
371
|
+
border-top: none;
|
372
|
+
border-top-left-radius: 0;
|
373
|
+
border-top-right-radius: 0;
|
374
|
+
background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
|
375
|
+
background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
|
376
|
+
background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
|
377
|
+
background-repeat: repeat-x;
|
378
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
|
379
|
+
|
380
|
+
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
|
381
|
+
border-bottom: none;
|
382
|
+
border-bottom-left-radius: 0;
|
383
|
+
border-bottom-right-radius: 0;
|
384
|
+
background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
|
385
|
+
background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
|
386
|
+
background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
|
387
|
+
background-repeat: repeat-x;
|
388
|
+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
|
389
|
+
|
390
|
+
.select2-container--classic .select2-selection--multiple {
|
391
|
+
background-color: white;
|
392
|
+
border: 1px solid #aaa;
|
393
|
+
border-radius: 4px;
|
394
|
+
cursor: text;
|
395
|
+
outline: 0; }
|
396
|
+
.select2-container--classic .select2-selection--multiple:focus {
|
397
|
+
border: 1px solid #5897fb; }
|
398
|
+
.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
|
399
|
+
list-style: none;
|
400
|
+
margin: 0;
|
401
|
+
padding: 0 5px; }
|
402
|
+
.select2-container--classic .select2-selection--multiple .select2-selection__clear {
|
403
|
+
display: none; }
|
404
|
+
.select2-container--classic .select2-selection--multiple .select2-selection__choice {
|
405
|
+
background-color: #e4e4e4;
|
406
|
+
border: 1px solid #aaa;
|
407
|
+
border-radius: 4px;
|
408
|
+
cursor: default;
|
409
|
+
float: left;
|
410
|
+
margin-right: 5px;
|
411
|
+
margin-top: 5px;
|
412
|
+
padding: 0 5px; }
|
413
|
+
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
|
414
|
+
color: #888;
|
415
|
+
cursor: pointer;
|
416
|
+
display: inline-block;
|
417
|
+
font-weight: bold;
|
418
|
+
margin-right: 2px; }
|
419
|
+
.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
|
420
|
+
color: #555; }
|
421
|
+
|
422
|
+
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
423
|
+
float: right; }
|
424
|
+
|
425
|
+
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
|
426
|
+
margin-left: 5px;
|
427
|
+
margin-right: auto; }
|
428
|
+
|
429
|
+
.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
|
430
|
+
margin-left: 2px;
|
431
|
+
margin-right: auto; }
|
432
|
+
|
433
|
+
.select2-container--classic.select2-container--open .select2-selection--multiple {
|
434
|
+
border: 1px solid #5897fb; }
|
435
|
+
|
436
|
+
.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
|
437
|
+
border-top: none;
|
438
|
+
border-top-left-radius: 0;
|
439
|
+
border-top-right-radius: 0; }
|
440
|
+
|
441
|
+
.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
|
442
|
+
border-bottom: none;
|
443
|
+
border-bottom-left-radius: 0;
|
444
|
+
border-bottom-right-radius: 0; }
|
445
|
+
|
446
|
+
.select2-container--classic .select2-search--dropdown .select2-search__field {
|
447
|
+
border: 1px solid #aaa;
|
448
|
+
outline: 0; }
|
449
|
+
|
450
|
+
.select2-container--classic .select2-search--inline .select2-search__field {
|
451
|
+
outline: 0;
|
452
|
+
box-shadow: none; }
|
453
|
+
|
454
|
+
.select2-container--classic .select2-dropdown {
|
455
|
+
background-color: white;
|
456
|
+
border: 1px solid transparent; }
|
457
|
+
|
458
|
+
.select2-container--classic .select2-dropdown--above {
|
459
|
+
border-bottom: none; }
|
460
|
+
|
461
|
+
.select2-container--classic .select2-dropdown--below {
|
462
|
+
border-top: none; }
|
463
|
+
|
464
|
+
.select2-container--classic .select2-results > .select2-results__options {
|
465
|
+
max-height: 200px;
|
466
|
+
overflow-y: auto; }
|
467
|
+
|
468
|
+
.select2-container--classic .select2-results__option[role=group] {
|
469
|
+
padding: 0; }
|
470
|
+
|
471
|
+
.select2-container--classic .select2-results__option[aria-disabled=true] {
|
472
|
+
color: grey; }
|
473
|
+
|
474
|
+
.select2-container--classic .select2-results__option--highlighted[aria-selected] {
|
475
|
+
background-color: #3875d7;
|
476
|
+
color: white; }
|
477
|
+
|
478
|
+
.select2-container--classic .select2-results__group {
|
479
|
+
cursor: default;
|
480
|
+
display: block;
|
481
|
+
padding: 6px; }
|
482
|
+
|
483
|
+
.select2-container--classic.select2-container--open .select2-dropdown {
|
484
|
+
border-color: #5897fb; }
|
@@ -0,0 +1 @@
|
|
1
|
+
Mime::Type.register 'application/xls', :xls
|
data/config/routes.rb
ADDED
Binary file
|
Binary file
|
@@ -0,0 +1,167 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
reports_kit (0.3.2)
|
5
|
+
rails (>= 3)
|
6
|
+
spreadsheet (>= 1.1)
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
actioncable (5.1.2)
|
12
|
+
actionpack (= 5.1.2)
|
13
|
+
nio4r (~> 2.0)
|
14
|
+
websocket-driver (~> 0.6.1)
|
15
|
+
actionmailer (5.1.2)
|
16
|
+
actionpack (= 5.1.2)
|
17
|
+
actionview (= 5.1.2)
|
18
|
+
activejob (= 5.1.2)
|
19
|
+
mail (~> 2.5, >= 2.5.4)
|
20
|
+
rails-dom-testing (~> 2.0)
|
21
|
+
actionpack (5.1.2)
|
22
|
+
actionview (= 5.1.2)
|
23
|
+
activesupport (= 5.1.2)
|
24
|
+
rack (~> 2.0)
|
25
|
+
rack-test (~> 0.6.3)
|
26
|
+
rails-dom-testing (~> 2.0)
|
27
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.2)
|
28
|
+
actionview (5.1.2)
|
29
|
+
activesupport (= 5.1.2)
|
30
|
+
builder (~> 3.1)
|
31
|
+
erubi (~> 1.4)
|
32
|
+
rails-dom-testing (~> 2.0)
|
33
|
+
rails-html-sanitizer (~> 1.0, >= 1.0.3)
|
34
|
+
activejob (5.1.2)
|
35
|
+
activesupport (= 5.1.2)
|
36
|
+
globalid (>= 0.3.6)
|
37
|
+
activemodel (5.1.2)
|
38
|
+
activesupport (= 5.1.2)
|
39
|
+
activerecord (5.1.2)
|
40
|
+
activemodel (= 5.1.2)
|
41
|
+
activesupport (= 5.1.2)
|
42
|
+
arel (~> 8.0)
|
43
|
+
activesupport (5.1.2)
|
44
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
45
|
+
i18n (~> 0.7)
|
46
|
+
minitest (~> 5.1)
|
47
|
+
tzinfo (~> 1.1)
|
48
|
+
appraisal (2.2.0)
|
49
|
+
bundler
|
50
|
+
rake
|
51
|
+
thor (>= 0.14.0)
|
52
|
+
arel (8.0.0)
|
53
|
+
builder (3.2.3)
|
54
|
+
byebug (2.7.0)
|
55
|
+
columnize (~> 0.3)
|
56
|
+
debugger-linecache (~> 1.2)
|
57
|
+
coderay (1.1.1)
|
58
|
+
columnize (0.9.0)
|
59
|
+
concurrent-ruby (1.0.5)
|
60
|
+
database_cleaner (1.6.1)
|
61
|
+
debugger-linecache (1.2.0)
|
62
|
+
diff-lcs (1.3)
|
63
|
+
erubi (1.6.1)
|
64
|
+
factory_girl (4.8.0)
|
65
|
+
activesupport (>= 3.0.0)
|
66
|
+
globalid (0.4.0)
|
67
|
+
activesupport (>= 4.2.0)
|
68
|
+
i18n (0.8.4)
|
69
|
+
loofah (2.0.3)
|
70
|
+
nokogiri (>= 1.5.9)
|
71
|
+
mail (2.6.6)
|
72
|
+
mime-types (>= 1.16, < 4)
|
73
|
+
method_source (0.8.2)
|
74
|
+
mime-types (3.1)
|
75
|
+
mime-types-data (~> 3.2015)
|
76
|
+
mime-types-data (3.2016.0521)
|
77
|
+
mini_portile2 (2.2.0)
|
78
|
+
minitest (5.10.2)
|
79
|
+
mysql2 (0.4.7)
|
80
|
+
nio4r (2.1.0)
|
81
|
+
nokogiri (1.8.0)
|
82
|
+
mini_portile2 (~> 2.2.0)
|
83
|
+
pg (0.21.0)
|
84
|
+
pry (0.10.4)
|
85
|
+
coderay (~> 1.1.0)
|
86
|
+
method_source (~> 0.8.1)
|
87
|
+
slop (~> 3.4)
|
88
|
+
pry-byebug (1.3.3)
|
89
|
+
byebug (~> 2.7)
|
90
|
+
pry (~> 0.10)
|
91
|
+
rack (2.0.3)
|
92
|
+
rack-test (0.6.3)
|
93
|
+
rack (>= 1.0)
|
94
|
+
rails (5.1.2)
|
95
|
+
actioncable (= 5.1.2)
|
96
|
+
actionmailer (= 5.1.2)
|
97
|
+
actionpack (= 5.1.2)
|
98
|
+
actionview (= 5.1.2)
|
99
|
+
activejob (= 5.1.2)
|
100
|
+
activemodel (= 5.1.2)
|
101
|
+
activerecord (= 5.1.2)
|
102
|
+
activesupport (= 5.1.2)
|
103
|
+
bundler (>= 1.3.0, < 2.0)
|
104
|
+
railties (= 5.1.2)
|
105
|
+
sprockets-rails (>= 2.0.0)
|
106
|
+
rails-dom-testing (2.0.3)
|
107
|
+
activesupport (>= 4.2.0)
|
108
|
+
nokogiri (>= 1.6)
|
109
|
+
rails-html-sanitizer (1.0.3)
|
110
|
+
loofah (~> 2.0)
|
111
|
+
railties (5.1.2)
|
112
|
+
actionpack (= 5.1.2)
|
113
|
+
activesupport (= 5.1.2)
|
114
|
+
method_source
|
115
|
+
rake (>= 0.8.7)
|
116
|
+
thor (>= 0.18.1, < 2.0)
|
117
|
+
rake (12.0.0)
|
118
|
+
rspec (3.6.0)
|
119
|
+
rspec-core (~> 3.6.0)
|
120
|
+
rspec-expectations (~> 3.6.0)
|
121
|
+
rspec-mocks (~> 3.6.0)
|
122
|
+
rspec-core (3.6.0)
|
123
|
+
rspec-support (~> 3.6.0)
|
124
|
+
rspec-expectations (3.6.0)
|
125
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
126
|
+
rspec-support (~> 3.6.0)
|
127
|
+
rspec-mocks (3.6.0)
|
128
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
129
|
+
rspec-support (~> 3.6.0)
|
130
|
+
rspec-support (3.6.0)
|
131
|
+
ruby-ole (1.2.12.1)
|
132
|
+
slop (3.6.0)
|
133
|
+
spreadsheet (1.1.4)
|
134
|
+
ruby-ole (>= 1.0)
|
135
|
+
sprockets (3.7.1)
|
136
|
+
concurrent-ruby (~> 1.0)
|
137
|
+
rack (> 1, < 3)
|
138
|
+
sprockets-rails (3.2.1)
|
139
|
+
actionpack (>= 4.0)
|
140
|
+
activesupport (>= 4.0)
|
141
|
+
sprockets (>= 3.0.0)
|
142
|
+
thor (0.19.4)
|
143
|
+
thread_safe (0.3.6)
|
144
|
+
timecop (0.9.0)
|
145
|
+
tzinfo (1.2.3)
|
146
|
+
thread_safe (~> 0.1)
|
147
|
+
websocket-driver (0.6.5)
|
148
|
+
websocket-extensions (>= 0.1.0)
|
149
|
+
websocket-extensions (0.1.2)
|
150
|
+
|
151
|
+
PLATFORMS
|
152
|
+
ruby
|
153
|
+
|
154
|
+
DEPENDENCIES
|
155
|
+
appraisal
|
156
|
+
database_cleaner (~> 1)
|
157
|
+
factory_girl (~> 4)
|
158
|
+
mysql2
|
159
|
+
pg (>= 0.15)
|
160
|
+
pry (~> 0)
|
161
|
+
pry-byebug (~> 1)
|
162
|
+
reports_kit!
|
163
|
+
rspec (~> 3)
|
164
|
+
timecop (~> 0)
|
165
|
+
|
166
|
+
BUNDLED WITH
|
167
|
+
1.15.4
|