tokite 0.8.1 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -2
  3. data/app/assets/stylesheets/tokite/application.scss +3 -23
  4. data/app/views/layouts/tokite/application.html.haml +1 -2
  5. data/lib/tasks/{tokite.rake → ridgepole.rake} +4 -11
  6. data/lib/tasks/stylesheet.rake +23 -0
  7. data/lib/tokite/engine.rb +12 -0
  8. data/lib/tokite/version.rb +1 -1
  9. data/vendor/README.md +1 -0
  10. data/vendor/stylesheets/tokite/bulma/LICENSE +21 -0
  11. data/vendor/stylesheets/tokite/bulma/sass/_index.scss +10 -0
  12. data/vendor/stylesheets/tokite/bulma/sass/base/_index.scss +6 -0
  13. data/vendor/stylesheets/tokite/bulma/sass/base/animations.scss +15 -0
  14. data/vendor/stylesheets/tokite/bulma/sass/base/generic.scss +240 -0
  15. data/vendor/stylesheets/tokite/bulma/sass/base/minireset.scss +92 -0
  16. data/vendor/stylesheets/tokite/bulma/sass/base/skeleton.scss +114 -0
  17. data/vendor/stylesheets/tokite/bulma/sass/components/_index.scss +13 -0
  18. data/vendor/stylesheets/tokite/bulma/sass/components/breadcrumb.scss +139 -0
  19. data/vendor/stylesheets/tokite/bulma/sass/components/card.scss +162 -0
  20. data/vendor/stylesheets/tokite/bulma/sass/components/dropdown.scss +188 -0
  21. data/vendor/stylesheets/tokite/bulma/sass/components/menu.scss +165 -0
  22. data/vendor/stylesheets/tokite/bulma/sass/components/message.scss +183 -0
  23. data/vendor/stylesheets/tokite/bulma/sass/components/modal.scss +164 -0
  24. data/vendor/stylesheets/tokite/bulma/sass/components/navbar.scss +799 -0
  25. data/vendor/stylesheets/tokite/bulma/sass/components/pagination.scss +379 -0
  26. data/vendor/stylesheets/tokite/bulma/sass/components/panel.scss +218 -0
  27. data/vendor/stylesheets/tokite/bulma/sass/components/tabs.scss +273 -0
  28. data/vendor/stylesheets/tokite/bulma/sass/elements/_index.scss +16 -0
  29. data/vendor/stylesheets/tokite/bulma/sass/elements/block.scss +6 -0
  30. data/vendor/stylesheets/tokite/bulma/sass/elements/box.scss +59 -0
  31. data/vendor/stylesheets/tokite/bulma/sass/elements/button.scss +659 -0
  32. data/vendor/stylesheets/tokite/bulma/sass/elements/content.scss +289 -0
  33. data/vendor/stylesheets/tokite/bulma/sass/elements/delete.scss +6 -0
  34. data/vendor/stylesheets/tokite/bulma/sass/elements/icon.scss +67 -0
  35. data/vendor/stylesheets/tokite/bulma/sass/elements/image.scss +64 -0
  36. data/vendor/stylesheets/tokite/bulma/sass/elements/loader.scss +15 -0
  37. data/vendor/stylesheets/tokite/bulma/sass/elements/notification.scss +105 -0
  38. data/vendor/stylesheets/tokite/bulma/sass/elements/progress.scss +115 -0
  39. data/vendor/stylesheets/tokite/bulma/sass/elements/table.scss +261 -0
  40. data/vendor/stylesheets/tokite/bulma/sass/elements/tag.scss +219 -0
  41. data/vendor/stylesheets/tokite/bulma/sass/elements/title.scss +130 -0
  42. data/vendor/stylesheets/tokite/bulma/sass/form/_index.scss +9 -0
  43. data/vendor/stylesheets/tokite/bulma/sass/form/checkbox-radio.scss +36 -0
  44. data/vendor/stylesheets/tokite/bulma/sass/form/file.scss +330 -0
  45. data/vendor/stylesheets/tokite/bulma/sass/form/input-textarea.scss +115 -0
  46. data/vendor/stylesheets/tokite/bulma/sass/form/select.scss +144 -0
  47. data/vendor/stylesheets/tokite/bulma/sass/form/shared.scss +178 -0
  48. data/vendor/stylesheets/tokite/bulma/sass/form/tools.scss +352 -0
  49. data/vendor/stylesheets/tokite/bulma/sass/grid/_index.scss +5 -0
  50. data/vendor/stylesheets/tokite/bulma/sass/grid/columns.scss +961 -0
  51. data/vendor/stylesheets/tokite/bulma/sass/grid/grid.scss +209 -0
  52. data/vendor/stylesheets/tokite/bulma/sass/helpers/_index.scss +15 -0
  53. data/vendor/stylesheets/tokite/bulma/sass/helpers/aspect-ratio.scss +12 -0
  54. data/vendor/stylesheets/tokite/bulma/sass/helpers/border.scss +15 -0
  55. data/vendor/stylesheets/tokite/bulma/sass/helpers/color.scss +344 -0
  56. data/vendor/stylesheets/tokite/bulma/sass/helpers/flexbox.scss +62 -0
  57. data/vendor/stylesheets/tokite/bulma/sass/helpers/float.scss +28 -0
  58. data/vendor/stylesheets/tokite/bulma/sass/helpers/gap.scss +24 -0
  59. data/vendor/stylesheets/tokite/bulma/sass/helpers/other.scss +19 -0
  60. data/vendor/stylesheets/tokite/bulma/sass/helpers/overflow.scss +21 -0
  61. data/vendor/stylesheets/tokite/bulma/sass/helpers/position.scss +19 -0
  62. data/vendor/stylesheets/tokite/bulma/sass/helpers/spacing.scss +64 -0
  63. data/vendor/stylesheets/tokite/bulma/sass/helpers/typography.scss +174 -0
  64. data/vendor/stylesheets/tokite/bulma/sass/helpers/visibility.scss +221 -0
  65. data/vendor/stylesheets/tokite/bulma/sass/layout/_index.scss +9 -0
  66. data/vendor/stylesheets/tokite/bulma/sass/layout/container.scss +59 -0
  67. data/vendor/stylesheets/tokite/bulma/sass/layout/footer.scss +23 -0
  68. data/vendor/stylesheets/tokite/bulma/sass/layout/hero.scss +273 -0
  69. data/vendor/stylesheets/tokite/bulma/sass/layout/level.scss +107 -0
  70. data/vendor/stylesheets/tokite/bulma/sass/layout/media.scss +106 -0
  71. data/vendor/stylesheets/tokite/bulma/sass/layout/section.scss +38 -0
  72. data/vendor/stylesheets/tokite/bulma/sass/themes/_index.scss +36 -0
  73. data/vendor/stylesheets/tokite/bulma/sass/themes/dark.scss +57 -0
  74. data/vendor/stylesheets/tokite/bulma/sass/themes/light.scss +147 -0
  75. data/vendor/stylesheets/tokite/bulma/sass/themes/setup.scss +174 -0
  76. data/vendor/stylesheets/tokite/bulma/sass/utilities/_index.scss +7 -0
  77. data/vendor/stylesheets/tokite/bulma/sass/utilities/controls.scss +85 -0
  78. data/vendor/stylesheets/tokite/bulma/sass/utilities/css-variables.scss +502 -0
  79. data/vendor/stylesheets/tokite/bulma/sass/utilities/derived-variables.scss +112 -0
  80. data/vendor/stylesheets/tokite/bulma/sass/utilities/extends.scss +34 -0
  81. data/vendor/stylesheets/tokite/bulma/sass/utilities/functions.scss +310 -0
  82. data/vendor/stylesheets/tokite/bulma/sass/utilities/initial-variables.scss +157 -0
  83. data/vendor/stylesheets/tokite/bulma/sass/utilities/mixins.scss +462 -0
  84. metadata +94 -21
  85. data/app/assets/config/tokite_manifest.js +0 -3
  86. data/app/assets/javascripts/tokite/application.js +0 -1
  87. data/lib/tasks/yarn.rake +0 -3
@@ -0,0 +1,462 @@
1
+ @use "sass:map";
2
+
3
+ @use "initial-variables" as iv;
4
+ @use "css-variables" as cv;
5
+
6
+ @mixin arrow($color: #{cv.getVar("arrow-color")}) {
7
+ border: 0.125em solid $color;
8
+ border-right: 0;
9
+ border-top: 0;
10
+ content: " ";
11
+ display: block;
12
+ height: 0.625em;
13
+ margin-top: -0.4375em;
14
+ pointer-events: none;
15
+ position: absolute;
16
+ top: 50%;
17
+ transform: rotate(-45deg);
18
+ transform-origin: center;
19
+ transition-duration: cv.getVar("duration");
20
+ transition-property: border-color;
21
+ width: 0.625em;
22
+ }
23
+
24
+ @mixin block($spacing: cv.getVar("block-spacing")) {
25
+ &:not(:last-child) {
26
+ margin-bottom: $spacing;
27
+ }
28
+ }
29
+
30
+ @mixin center($width, $height: 0) {
31
+ position: absolute;
32
+ @if $height != 0 {
33
+ left: calc(50% - (#{$width} * 0.5));
34
+ top: calc(50% - (#{$height} * 0.5));
35
+ } @else {
36
+ left: calc(50% - (#{$width} * 0.5));
37
+ top: calc(50% - (#{$width} * 0.5));
38
+ }
39
+ }
40
+
41
+ @mixin clearfix {
42
+ &::after {
43
+ clear: both;
44
+ content: " ";
45
+ display: table;
46
+ }
47
+ }
48
+
49
+ @mixin delete {
50
+ @include cv.register-vars(
51
+ (
52
+ "delete-dimensions": 1.25rem,
53
+ "delete-background-l": 0%,
54
+ "delete-background-alpha": 0.5,
55
+ "delete-color": #{cv.getVar("white")},
56
+ )
57
+ );
58
+
59
+ appearance: none;
60
+ background-color: hsla(
61
+ #{cv.getVar("scheme-h")},
62
+ #{cv.getVar("scheme-s")},
63
+ #{cv.getVar("delete-background-l")},
64
+ #{cv.getVar("delete-background-alpha")}
65
+ );
66
+ border: none;
67
+ border-radius: cv.getVar("radius-rounded");
68
+ cursor: pointer;
69
+ pointer-events: auto;
70
+ display: inline-flex;
71
+ flex-grow: 0;
72
+ flex-shrink: 0;
73
+ font-size: 1em;
74
+ height: cv.getVar("delete-dimensions");
75
+ max-height: cv.getVar("delete-dimensions");
76
+ max-width: cv.getVar("delete-dimensions");
77
+ min-height: cv.getVar("delete-dimensions");
78
+ min-width: cv.getVar("delete-dimensions");
79
+ outline: none;
80
+ position: relative;
81
+ vertical-align: top;
82
+ width: cv.getVar("delete-dimensions");
83
+
84
+ &::before,
85
+ &::after {
86
+ background-color: cv.getVar("delete-color");
87
+ content: "";
88
+ display: block;
89
+ left: 50%;
90
+ position: absolute;
91
+ top: 50%;
92
+ transform: translateX(-50%) translateY(-50%) rotate(45deg);
93
+ transform-origin: center center;
94
+ }
95
+
96
+ &::before {
97
+ height: 2px;
98
+ width: 50%;
99
+ }
100
+
101
+ &::after {
102
+ height: 50%;
103
+ width: 2px;
104
+ }
105
+
106
+ &:hover,
107
+ &:focus {
108
+ @include cv.register-var("delete-background-alpha", 0.4);
109
+ }
110
+
111
+ &:active {
112
+ @include cv.register-var("delete-background-alpha", 0.5);
113
+ }
114
+
115
+ // Sizes
116
+ &.#{iv.$class-prefix}is-small {
117
+ @include cv.register-var("delete-dimensions", 1rem);
118
+ }
119
+
120
+ &.#{iv.$class-prefix}is-medium {
121
+ @include cv.register-var("delete-dimensions", 1.5rem);
122
+ }
123
+
124
+ &.#{iv.$class-prefix}is-large {
125
+ @include cv.register-var("delete-dimensions", 2rem);
126
+ }
127
+ }
128
+
129
+ @mixin fa($size, $dimensions) {
130
+ display: inline-block;
131
+ font-size: $size;
132
+ height: $dimensions;
133
+ line-height: $dimensions;
134
+ text-align: center;
135
+ vertical-align: top;
136
+ width: $dimensions;
137
+ }
138
+
139
+ @mixin burger($dimensions) {
140
+ align-items: center;
141
+ appearance: none;
142
+ background: none;
143
+ border: none;
144
+ border-radius: cv.getVar("burger-border-radius");
145
+ color: hsl(
146
+ cv.getVar("burger-h"),
147
+ cv.getVar("burger-s"),
148
+ cv.getVar("burger-l")
149
+ );
150
+ cursor: pointer;
151
+ display: inline-flex;
152
+ flex-direction: column;
153
+ flex-shrink: 0;
154
+ height: $dimensions;
155
+ justify-content: center;
156
+ position: relative;
157
+ vertical-align: top;
158
+ width: $dimensions;
159
+
160
+ span {
161
+ background-color: currentColor;
162
+ display: block;
163
+ height: cv.getVar("burger-item-height");
164
+ left: calc(50% - calc(#{cv.getVar("burger-item-width")}) / 2);
165
+ position: absolute;
166
+ transform-origin: center;
167
+ transition-duration: cv.getVar("duration");
168
+ transition-property: background-color, color, opacity, transform;
169
+ transition-timing-function: cv.getVar("easing");
170
+ width: cv.getVar("burger-item-width");
171
+
172
+ &:nth-child(1),
173
+ &:nth-child(2) {
174
+ top: calc(50% - calc(#{cv.getVar("burger-item-height")}) / 2);
175
+ }
176
+
177
+ &:nth-child(3) {
178
+ bottom: calc(50% + #{cv.getVar("burger-gap")});
179
+ }
180
+
181
+ &:nth-child(4) {
182
+ top: calc(50% + #{cv.getVar("burger-gap")});
183
+ }
184
+ }
185
+
186
+ &:hover {
187
+ background-color: hsla(
188
+ cv.getVar("burger-h"),
189
+ cv.getVar("burger-s"),
190
+ cv.getVar("burger-l"),
191
+ 0.1
192
+ );
193
+ }
194
+
195
+ &:active {
196
+ background-color: hsla(
197
+ cv.getVar("burger-h"),
198
+ cv.getVar("burger-s"),
199
+ cv.getVar("burger-l"),
200
+ 0.2
201
+ );
202
+ }
203
+
204
+ // Modifers
205
+ &.#{iv.$class-prefix}is-active {
206
+ span {
207
+ &:nth-child(1) {
208
+ transform: rotate(-45deg);
209
+ }
210
+
211
+ &:nth-child(2) {
212
+ transform: rotate(45deg);
213
+ }
214
+
215
+ &:nth-child(3),
216
+ &:nth-child(4) {
217
+ opacity: 0;
218
+ }
219
+ }
220
+ }
221
+ }
222
+
223
+ @mixin overflow-touch {
224
+ -webkit-overflow-scrolling: touch;
225
+ }
226
+
227
+ @mixin placeholder {
228
+ $placeholders: ":-moz" ":-webkit-input" "-moz" "-ms-input";
229
+
230
+ @each $placeholder in $placeholders {
231
+ &:#{$placeholder}-placeholder {
232
+ @content;
233
+ }
234
+ }
235
+ }
236
+
237
+ @mixin reset {
238
+ appearance: none;
239
+ background: none;
240
+ border: none;
241
+ color: inherit;
242
+ font-family: inherit;
243
+ font-size: 1em;
244
+ margin: 0;
245
+ padding: 0;
246
+ }
247
+
248
+ @mixin selection($current-selector: false) {
249
+ @if $current-selector {
250
+ &::-moz-selection {
251
+ @content;
252
+ }
253
+ &::selection {
254
+ @content;
255
+ }
256
+ } @else {
257
+ ::-moz-selection {
258
+ @content;
259
+ }
260
+ ::selection {
261
+ @content;
262
+ }
263
+ }
264
+ }
265
+
266
+ // Responsiveness
267
+
268
+ @mixin from($device) {
269
+ @media screen and (min-width: $device) {
270
+ @content;
271
+ }
272
+ }
273
+
274
+ @mixin until($device) {
275
+ @media screen and (max-width: ($device - 1px)) {
276
+ @content;
277
+ }
278
+ }
279
+
280
+ @mixin between($from, $until) {
281
+ @media screen and (min-width: $from) and (max-width: ($until - 1px)) {
282
+ @content;
283
+ }
284
+ }
285
+
286
+ @mixin mobile {
287
+ @media screen and (max-width: (iv.$tablet - 1px)) {
288
+ @content;
289
+ }
290
+ }
291
+
292
+ @mixin tablet {
293
+ @media screen and (min-width: iv.$tablet), print {
294
+ @content;
295
+ }
296
+ }
297
+
298
+ @mixin tablet-only {
299
+ @media screen and (min-width: iv.$tablet) and (max-width: (iv.$desktop - 1px)) {
300
+ @content;
301
+ }
302
+ }
303
+
304
+ @mixin touch {
305
+ @media screen and (max-width: (iv.$desktop - 1px)) {
306
+ @content;
307
+ }
308
+ }
309
+
310
+ @mixin desktop {
311
+ @media screen and (min-width: iv.$desktop) {
312
+ @content;
313
+ }
314
+ }
315
+
316
+ @mixin desktop-only {
317
+ @if iv.$widescreen-enabled {
318
+ @media screen and (min-width: iv.$desktop) and (max-width: (iv.$widescreen - 1px)) {
319
+ @content;
320
+ }
321
+ }
322
+ }
323
+
324
+ @mixin until-widescreen {
325
+ @if iv.$widescreen-enabled {
326
+ @media screen and (max-width: (iv.$widescreen - 1px)) {
327
+ @content;
328
+ }
329
+ }
330
+ }
331
+
332
+ @mixin widescreen {
333
+ @if iv.$widescreen-enabled {
334
+ @media screen and (min-width: iv.$widescreen) {
335
+ @content;
336
+ }
337
+ }
338
+ }
339
+
340
+ @mixin widescreen-only {
341
+ @if iv.$widescreen-enabled and iv.$fullhd-enabled {
342
+ @media screen and (min-width: iv.$widescreen) and (max-width: (iv.$fullhd - 1px)) {
343
+ @content;
344
+ }
345
+ }
346
+ }
347
+
348
+ @mixin until-fullhd {
349
+ @if iv.$fullhd-enabled {
350
+ @media screen and (max-width: (iv.$fullhd - 1px)) {
351
+ @content;
352
+ }
353
+ }
354
+ }
355
+
356
+ @mixin fullhd {
357
+ @if iv.$fullhd-enabled {
358
+ @media screen and (min-width: iv.$fullhd) {
359
+ @content;
360
+ }
361
+ }
362
+ }
363
+
364
+ @mixin breakpoint($name) {
365
+ $breakpoint: map.get(iv.$breakpoints, $name);
366
+
367
+ @if $breakpoint {
368
+ $from: map.get($breakpoint, "from");
369
+ $until: map.get($breakpoint, "until");
370
+
371
+ @if $from and $until {
372
+ @include between($from, $until) {
373
+ @content;
374
+ }
375
+ } @else if $from {
376
+ @include from($from) {
377
+ @content;
378
+ }
379
+ } @else if $until {
380
+ @include until($until) {
381
+ @content;
382
+ }
383
+ }
384
+ }
385
+ }
386
+
387
+ @mixin container-from($name, $width) {
388
+ @container #{$name} (min-width: #{$width}) {
389
+ @content;
390
+ }
391
+ }
392
+
393
+ @mixin container-until($name, $width) {
394
+ @container #{$name} (max-width: #{$width - 1px}) {
395
+ @content;
396
+ }
397
+ }
398
+
399
+ @mixin ltr {
400
+ @if not iv.$rtl {
401
+ @content;
402
+ }
403
+ }
404
+
405
+ @mixin rtl {
406
+ @if iv.$rtl {
407
+ @content;
408
+ }
409
+ }
410
+
411
+ @mixin ltr-property($property, $spacing, $right: true) {
412
+ $normal: if($right, "right", "left");
413
+ $opposite: if($right, "left", "right");
414
+
415
+ @if iv.$rtl {
416
+ #{$property}-#{$opposite}: $spacing;
417
+ } @else {
418
+ #{$property}-#{$normal}: $spacing;
419
+ }
420
+ }
421
+
422
+ @mixin ltr-position($spacing, $right: true) {
423
+ $normal: if($right, "right", "left");
424
+ $opposite: if($right, "left", "right");
425
+
426
+ @if iv.$rtl {
427
+ #{$opposite}: $spacing;
428
+ } @else {
429
+ #{$normal}: $spacing;
430
+ }
431
+ }
432
+
433
+ // Placeholders
434
+
435
+ @mixin unselectable {
436
+ -webkit-touch-callout: none;
437
+ -webkit-user-select: none;
438
+ -moz-user-select: none;
439
+ -ms-user-select: none;
440
+ user-select: none;
441
+ }
442
+
443
+ @mixin loader {
444
+ animation: spinAround 500ms infinite linear;
445
+ border: 2px solid cv.getVar("loading-color");
446
+ border-radius: cv.getVar("radius-rounded");
447
+ border-right-color: transparent;
448
+ border-top-color: transparent;
449
+ content: "";
450
+ display: block;
451
+ height: 1em;
452
+ position: relative;
453
+ width: 1em;
454
+ }
455
+
456
+ @mixin overlay($offset: 0) {
457
+ bottom: $offset;
458
+ left: $offset;
459
+ position: absolute;
460
+ right: $offset;
461
+ top: $offset;
462
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tokite
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.1
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - hogelog
@@ -37,6 +37,20 @@ dependencies:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
39
  version: '0'
40
+ - !ruby/object:Gem::Dependency
41
+ name: dartsass-rails
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ type: :runtime
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0'
40
54
  - !ruby/object:Gem::Dependency
41
55
  name: haml-rails
42
56
  requirement: !ruby/object:Gem::Requirement
@@ -122,7 +136,7 @@ dependencies:
122
136
  - !ruby/object:Gem::Version
123
137
  version: '0'
124
138
  - !ruby/object:Gem::Dependency
125
- name: ridgepole
139
+ name: propshaft
126
140
  requirement: !ruby/object:Gem::Requirement
127
141
  requirements:
128
142
  - - ">="
@@ -136,21 +150,7 @@ dependencies:
136
150
  - !ruby/object:Gem::Version
137
151
  version: '0'
138
152
  - !ruby/object:Gem::Dependency
139
- name: sass-rails
140
- requirement: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - "~>"
143
- - !ruby/object:Gem::Version
144
- version: '6.0'
145
- type: :runtime
146
- prerelease: false
147
- version_requirements: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
150
- - !ruby/object:Gem::Version
151
- version: '6.0'
152
- - !ruby/object:Gem::Dependency
153
- name: sprockets-rails
153
+ name: ridgepole
154
154
  requirement: !ruby/object:Gem::Requirement
155
155
  requirements:
156
156
  - - ">="
@@ -201,8 +201,6 @@ files:
201
201
  - MIT-LICENSE
202
202
  - README.md
203
203
  - Rakefile
204
- - app/assets/config/tokite_manifest.js
205
- - app/assets/javascripts/tokite/application.js
206
204
  - app/assets/stylesheets/tokite/application.scss
207
205
  - app/controllers/tokite/application_controller.rb
208
206
  - app/controllers/tokite/hooks_controller.rb
@@ -253,8 +251,8 @@ files:
253
251
  - config/initializers/omniauth.rb
254
252
  - config/initializers/slack_notifier.rb
255
253
  - config/routes.rb
256
- - lib/tasks/tokite.rake
257
- - lib/tasks/yarn.rake
254
+ - lib/tasks/ridgepole.rake
255
+ - lib/tasks/stylesheet.rake
258
256
  - lib/tokite.rb
259
257
  - lib/tokite/engine.rb
260
258
  - lib/tokite/exception_logger.rb
@@ -264,6 +262,81 @@ files:
264
262
  - schema/tokite_rules.schema
265
263
  - schema/tokite_secure_user_tokens.schema
266
264
  - schema/tokite_users.schema
265
+ - vendor/README.md
266
+ - vendor/stylesheets/tokite/bulma/LICENSE
267
+ - vendor/stylesheets/tokite/bulma/sass/_index.scss
268
+ - vendor/stylesheets/tokite/bulma/sass/base/_index.scss
269
+ - vendor/stylesheets/tokite/bulma/sass/base/animations.scss
270
+ - vendor/stylesheets/tokite/bulma/sass/base/generic.scss
271
+ - vendor/stylesheets/tokite/bulma/sass/base/minireset.scss
272
+ - vendor/stylesheets/tokite/bulma/sass/base/skeleton.scss
273
+ - vendor/stylesheets/tokite/bulma/sass/components/_index.scss
274
+ - vendor/stylesheets/tokite/bulma/sass/components/breadcrumb.scss
275
+ - vendor/stylesheets/tokite/bulma/sass/components/card.scss
276
+ - vendor/stylesheets/tokite/bulma/sass/components/dropdown.scss
277
+ - vendor/stylesheets/tokite/bulma/sass/components/menu.scss
278
+ - vendor/stylesheets/tokite/bulma/sass/components/message.scss
279
+ - vendor/stylesheets/tokite/bulma/sass/components/modal.scss
280
+ - vendor/stylesheets/tokite/bulma/sass/components/navbar.scss
281
+ - vendor/stylesheets/tokite/bulma/sass/components/pagination.scss
282
+ - vendor/stylesheets/tokite/bulma/sass/components/panel.scss
283
+ - vendor/stylesheets/tokite/bulma/sass/components/tabs.scss
284
+ - vendor/stylesheets/tokite/bulma/sass/elements/_index.scss
285
+ - vendor/stylesheets/tokite/bulma/sass/elements/block.scss
286
+ - vendor/stylesheets/tokite/bulma/sass/elements/box.scss
287
+ - vendor/stylesheets/tokite/bulma/sass/elements/button.scss
288
+ - vendor/stylesheets/tokite/bulma/sass/elements/content.scss
289
+ - vendor/stylesheets/tokite/bulma/sass/elements/delete.scss
290
+ - vendor/stylesheets/tokite/bulma/sass/elements/icon.scss
291
+ - vendor/stylesheets/tokite/bulma/sass/elements/image.scss
292
+ - vendor/stylesheets/tokite/bulma/sass/elements/loader.scss
293
+ - vendor/stylesheets/tokite/bulma/sass/elements/notification.scss
294
+ - vendor/stylesheets/tokite/bulma/sass/elements/progress.scss
295
+ - vendor/stylesheets/tokite/bulma/sass/elements/table.scss
296
+ - vendor/stylesheets/tokite/bulma/sass/elements/tag.scss
297
+ - vendor/stylesheets/tokite/bulma/sass/elements/title.scss
298
+ - vendor/stylesheets/tokite/bulma/sass/form/_index.scss
299
+ - vendor/stylesheets/tokite/bulma/sass/form/checkbox-radio.scss
300
+ - vendor/stylesheets/tokite/bulma/sass/form/file.scss
301
+ - vendor/stylesheets/tokite/bulma/sass/form/input-textarea.scss
302
+ - vendor/stylesheets/tokite/bulma/sass/form/select.scss
303
+ - vendor/stylesheets/tokite/bulma/sass/form/shared.scss
304
+ - vendor/stylesheets/tokite/bulma/sass/form/tools.scss
305
+ - vendor/stylesheets/tokite/bulma/sass/grid/_index.scss
306
+ - vendor/stylesheets/tokite/bulma/sass/grid/columns.scss
307
+ - vendor/stylesheets/tokite/bulma/sass/grid/grid.scss
308
+ - vendor/stylesheets/tokite/bulma/sass/helpers/_index.scss
309
+ - vendor/stylesheets/tokite/bulma/sass/helpers/aspect-ratio.scss
310
+ - vendor/stylesheets/tokite/bulma/sass/helpers/border.scss
311
+ - vendor/stylesheets/tokite/bulma/sass/helpers/color.scss
312
+ - vendor/stylesheets/tokite/bulma/sass/helpers/flexbox.scss
313
+ - vendor/stylesheets/tokite/bulma/sass/helpers/float.scss
314
+ - vendor/stylesheets/tokite/bulma/sass/helpers/gap.scss
315
+ - vendor/stylesheets/tokite/bulma/sass/helpers/other.scss
316
+ - vendor/stylesheets/tokite/bulma/sass/helpers/overflow.scss
317
+ - vendor/stylesheets/tokite/bulma/sass/helpers/position.scss
318
+ - vendor/stylesheets/tokite/bulma/sass/helpers/spacing.scss
319
+ - vendor/stylesheets/tokite/bulma/sass/helpers/typography.scss
320
+ - vendor/stylesheets/tokite/bulma/sass/helpers/visibility.scss
321
+ - vendor/stylesheets/tokite/bulma/sass/layout/_index.scss
322
+ - vendor/stylesheets/tokite/bulma/sass/layout/container.scss
323
+ - vendor/stylesheets/tokite/bulma/sass/layout/footer.scss
324
+ - vendor/stylesheets/tokite/bulma/sass/layout/hero.scss
325
+ - vendor/stylesheets/tokite/bulma/sass/layout/level.scss
326
+ - vendor/stylesheets/tokite/bulma/sass/layout/media.scss
327
+ - vendor/stylesheets/tokite/bulma/sass/layout/section.scss
328
+ - vendor/stylesheets/tokite/bulma/sass/themes/_index.scss
329
+ - vendor/stylesheets/tokite/bulma/sass/themes/dark.scss
330
+ - vendor/stylesheets/tokite/bulma/sass/themes/light.scss
331
+ - vendor/stylesheets/tokite/bulma/sass/themes/setup.scss
332
+ - vendor/stylesheets/tokite/bulma/sass/utilities/_index.scss
333
+ - vendor/stylesheets/tokite/bulma/sass/utilities/controls.scss
334
+ - vendor/stylesheets/tokite/bulma/sass/utilities/css-variables.scss
335
+ - vendor/stylesheets/tokite/bulma/sass/utilities/derived-variables.scss
336
+ - vendor/stylesheets/tokite/bulma/sass/utilities/extends.scss
337
+ - vendor/stylesheets/tokite/bulma/sass/utilities/functions.scss
338
+ - vendor/stylesheets/tokite/bulma/sass/utilities/initial-variables.scss
339
+ - vendor/stylesheets/tokite/bulma/sass/utilities/mixins.scss
267
340
  homepage: https://github.com/cookpad/tokite/
268
341
  licenses:
269
342
  - MIT
@@ -1,3 +0,0 @@
1
- //= link_tree ../images/tokite
2
- //= link_directory ../javascripts/tokite .js
3
- //= link_directory ../stylesheets/tokite .css
@@ -1 +0,0 @@
1
- //= require rails-ujs
data/lib/tasks/yarn.rake DELETED
@@ -1,3 +0,0 @@
1
- namespace :tokite do
2
-
3
- end