rbbt-rest 1.4.8 → 1.4.9

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 74d57e3e450bfc476f4744ed76407a6f4c77dfa6
4
- data.tar.gz: 28df7c8ca43f059b5a37423219a8b958080b5769
3
+ metadata.gz: f46a312844d8db25e3c2fed51c498db6fdc0bbd1
4
+ data.tar.gz: 196441e40a20d0e58587b5e760be3fdf3508e4c4
5
5
  SHA512:
6
- metadata.gz: 2e495dd72919cb6a1a050723057c631154559bf58b217a07dab6be104ffbd6e8102ab2ce86998fcaba4f12d2b0d376a1800916d58342550f430f636d7d784cef
7
- data.tar.gz: 070398ee95b0ee17249771380e3f19a62c5be3fd388d8a1d2ed2e66c08dde3e730c6f45d3d454fea95b233480c773937474536a9445224cf45c5803be7f7c3d6
6
+ metadata.gz: a07ac808467488aa6c951b6ef41f288539890e4ffb2fa6e5d36060f2e6379bd0c19a0e1ea9fa7c9106ea32b85fe14afae9d83d1ce0493a3fbb2ec616c6780342
7
+ data.tar.gz: 3b42830c10256e8066c53f9b60513451c3322702f2f2be5becc0fc2a925d7086d0c8730d6c134d599d143841bd63222c7c85470254456241419b720ac65f7eb2
@@ -78,10 +78,18 @@ module RbbtRESTHelpers
78
78
  html_tag("input", nil, :type => :hidden, :name => name.to_s + "_checkbox_false", :value => "false") +
79
79
  html_tag("input", nil, :type => :checkbox, :checked => check_true, :name => name, :value => "true", :id => id)
80
80
 
81
- when :string, :float, :integer
81
+ when :string, :float, :integer, :hidden
82
82
  value = current.nil? ? default : current
83
83
 
84
- input_type = type == :string ? "text" : "number"
84
+ input_type = case type
85
+ when :string
86
+ "text"
87
+ when :hidden
88
+ "hidden"
89
+ else
90
+ "number"
91
+ end
92
+
85
93
  step = case type
86
94
  when :string
87
95
  nil
@@ -0,0 +1,680 @@
1
+ /* normalize-scss 3.0.1+normalize.3.0.1 | MIT/GPLv2 License | bit.ly/normalize-scss */
2
+
3
+
4
+ // Variables and Imports
5
+ //
6
+ // If you have a base partial (or equivalent), you should move these lines to
7
+ // that file. NOTE: Edit the lines to remove "!default".
8
+ // @see http://compass-style.org/help/tutorials/best_practices/
9
+ // =============================================================================
10
+
11
+ // These 3 variables are copies of ones used in Compass' Vertical Rhythm module.
12
+
13
+ // The base font size.
14
+ $base-font-size: 16px !default;
15
+
16
+ // The base line height determines the basic unit of vertical rhythm.
17
+ $base-line-height: 24px !default;
18
+
19
+ // The length unit in which to output vertical rhythm values.
20
+ // Supported values: px, em, rem.
21
+ $rhythm-unit: 'em' !default;
22
+
23
+ // This variable is a copy of the one used in Compass' support module.
24
+
25
+ // Optional map of minimum browser versions to support. For example, to
26
+ // remove support for IE 7 and earlier, set $browser-minimum-versions['ie']
27
+ // to '8'.
28
+ $browser-minimum-versions: (
29
+ 'chrome': null,
30
+ 'firefox': null,
31
+ 'ie': null,
32
+ 'safari': null,
33
+ 'opera': null
34
+ ) !default;
35
+
36
+
37
+ // Set this to true to force CSS output to exactly match normalize.css.
38
+ $strict-normalize: true !default;
39
+
40
+ // The default font family.
41
+ $base-font-family: sans-serif !default;
42
+
43
+ // The font sizes for h1-h6.
44
+ $h1-font-size: 2 * $base-font-size !default;
45
+ $h2-font-size: 1.5 * $base-font-size !default;
46
+ $h3-font-size: 1.17 * $base-font-size !default;
47
+ $h4-font-size: 1 * $base-font-size !default;
48
+ $h5-font-size: 0.83 * $base-font-size !default;
49
+ $h6-font-size: 0.67 * $base-font-size !default;
50
+
51
+ // The amount lists and blockquotes are indented.
52
+ $indent-amount: 40px !default;
53
+
54
+ // After the default variables are set, import the required Compass partials.
55
+ @import "compass/support";
56
+ @import "compass/css3/box-sizing";
57
+ @import "compass/typography/vertical_rhythm";
58
+
59
+
60
+ /* Base
61
+ ========================================================================== */
62
+
63
+ @if not $strict-normalize or support-legacy-browser(ie, "7") {
64
+ /**
65
+ * Establish a vertical rhythm unit using $base-font-size, $base-line-height,
66
+ * and $rhythm-unit variables. Also, correct text resizing oddly in IE 6/7 when
67
+ * body `font-size` is set using `em` units.
68
+ */
69
+
70
+ @include establish-baseline();
71
+ }
72
+
73
+ /**
74
+ * 1. Set default font family to sans-serif.
75
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
76
+ * user zoom.
77
+ */
78
+
79
+ html {
80
+ font-family: $base-font-family; /* 1 */
81
+ -ms-text-size-adjust: 100%; /* 2 */
82
+ -webkit-text-size-adjust: 100%; /* 2 */
83
+ // Show a background image that can be used to debug your alignments.
84
+ // @include debug-vertical-alignment();
85
+ }
86
+
87
+ /**
88
+ * Remove default margin.
89
+ */
90
+
91
+ body {
92
+ margin: 0;
93
+ }
94
+
95
+ /* HTML5 display definitions
96
+ ========================================================================== */
97
+
98
+ /**
99
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
100
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
101
+ * Correct `block` display not defined for `main` in IE 11.
102
+ */
103
+
104
+ article,
105
+ aside,
106
+ details,
107
+ figcaption,
108
+ figure,
109
+ footer,
110
+ header,
111
+ hgroup,
112
+ main,
113
+ nav,
114
+ section,
115
+ summary {
116
+ display: block;
117
+ }
118
+
119
+ /**
120
+ * 1. Correct `inline-block` display not defined in IE 8/9.
121
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
122
+ */
123
+
124
+ audio,
125
+ canvas,
126
+ progress,
127
+ video {
128
+ @if support-legacy-browser(ie, "9") {
129
+ display: inline-block; /* 1 */
130
+ @if support-legacy-browser(ie, "7") {
131
+ *display: inline;
132
+ *zoom: 1;
133
+ }
134
+ }
135
+ vertical-align: baseline; /* 2 */
136
+ }
137
+
138
+ /**
139
+ * Prevent modern browsers from displaying `audio` without controls.
140
+ * Remove excess height in iOS 5 devices.
141
+ */
142
+
143
+ audio:not([controls]) {
144
+ display: none;
145
+ height: 0;
146
+ }
147
+
148
+ @if support-legacy-browser(ie, "10") {
149
+ /**
150
+ * Address `[hidden]` styling not present in IE 8/9/10.
151
+ */
152
+
153
+ [hidden] {
154
+ display: none;
155
+ }
156
+ }
157
+
158
+ /**
159
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
160
+ */
161
+
162
+ template {
163
+ display: none;
164
+ }
165
+
166
+ /* Links
167
+ ========================================================================== */
168
+
169
+ @if support-legacy-browser(ie, "10") {
170
+ /**
171
+ * Remove the gray background color from active links in IE 10.
172
+ */
173
+
174
+ a {
175
+ background: transparent;
176
+ }
177
+ }
178
+
179
+ /**
180
+ * Improve readability when focused and also mouse hovered in all browsers.
181
+ */
182
+
183
+ a:active,
184
+ a:hover {
185
+ outline: 0;
186
+ }
187
+
188
+ /* Text-level semantics
189
+ ========================================================================== */
190
+
191
+ /**
192
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
193
+ */
194
+
195
+ abbr[title] {
196
+ border-bottom: 1px dotted;
197
+ }
198
+
199
+ /**
200
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
201
+ */
202
+
203
+ b,
204
+ strong {
205
+ font-weight: bold;
206
+ }
207
+
208
+ @if not $strict-normalize or support-legacy-browser(ie, "7") {
209
+ /**
210
+ * Set 1 unit of vertical rhythm on the top and bottom margin.
211
+ */
212
+
213
+ blockquote {
214
+ margin: rhythm(1) $indent-amount;
215
+ }
216
+ }
217
+
218
+ /**
219
+ * Address styling not present in Safari and Chrome.
220
+ */
221
+
222
+ dfn {
223
+ font-style: italic;
224
+ }
225
+
226
+ /**
227
+ * Address variable `h1` font-size and margin within `section` and `article`
228
+ * contexts in Firefox 4+, Safari, and Chrome.
229
+ */
230
+
231
+ h1 {
232
+ /* Set the font-size and line-height while keeping a proper vertical rhythm. */
233
+ @if not $strict-normalize or support-legacy-browser(ie, "7") {
234
+ @include adjust-font-size-to( $h1-font-size );
235
+ }
236
+ @else {
237
+ font-size: if($rhythm-unit == "px", $h1-font-size, ($h1-font-size / $base-font-size)#{$rhythm-unit});
238
+ }
239
+
240
+ /* Set 1 unit of vertical rhythm on the top and bottom margins. */
241
+ @include leader(1, $h1-font-size);
242
+ @include trailer(1, $h1-font-size);
243
+ }
244
+
245
+ @if not $strict-normalize or support-legacy-browser(ie, "7") {
246
+ h2 {
247
+ @include adjust-font-size-to( $h2-font-size );
248
+ @include leader(1, $h2-font-size);
249
+ @include trailer(1, $h2-font-size);
250
+ }
251
+
252
+ h3 {
253
+ @include adjust-font-size-to( $h3-font-size );
254
+ @include leader(1, $h3-font-size);
255
+ @include trailer(1, $h3-font-size);
256
+ }
257
+
258
+ h4 {
259
+ @include adjust-font-size-to( $h4-font-size );
260
+ @include leader(1, $h4-font-size);
261
+ @include trailer(1, $h4-font-size);
262
+ }
263
+
264
+ h5 {
265
+ @include adjust-font-size-to( $h5-font-size );
266
+ @include leader(1, $h5-font-size);
267
+ @include trailer(1, $h5-font-size);
268
+ }
269
+
270
+ h6 {
271
+ @include adjust-font-size-to( $h6-font-size );
272
+ @include leader(1, $h6-font-size);
273
+ @include trailer(1, $h6-font-size);
274
+ }
275
+ }
276
+
277
+ @if support-legacy-browser(ie, "9") {
278
+ /**
279
+ * Address styling not present in IE 8/9.
280
+ */
281
+
282
+ mark {
283
+ background: #ff0;
284
+ color: #000;
285
+ }
286
+ }
287
+
288
+ @if not $strict-normalize or support-legacy-browser(ie, "7") {
289
+ /**
290
+ * Set 1 unit of vertical rhythm on the top and bottom margin.
291
+ */
292
+
293
+ p,
294
+ pre {
295
+ margin: rhythm(1) 0;
296
+ }
297
+ }
298
+
299
+ /**
300
+ * Address inconsistent and variable font size in all browsers.
301
+ */
302
+
303
+ small {
304
+ font-size: 80%;
305
+ }
306
+
307
+ /**
308
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
309
+ */
310
+
311
+ sub,
312
+ sup {
313
+ font-size: 75%;
314
+ line-height: 0;
315
+ position: relative;
316
+ vertical-align: baseline;
317
+ }
318
+
319
+ sup {
320
+ top: -0.5em;
321
+ }
322
+
323
+ sub {
324
+ bottom: -0.25em;
325
+ }
326
+
327
+ @if not $strict-normalize or support-legacy-browser(ie, "7") {
328
+ /* Lists
329
+ ========================================================================== */
330
+
331
+ /**
332
+ * Address margins set differently in IE 6/7.
333
+ */
334
+
335
+ dl,
336
+ menu,
337
+ ol,
338
+ ul {
339
+ margin: rhythm(1) 0;
340
+ }
341
+
342
+ @if not $strict-normalize {
343
+ /**
344
+ * Turn off margins on nested lists.
345
+ */
346
+
347
+ ol,
348
+ ul {
349
+ ol,
350
+ ul {
351
+ margin: 0;
352
+ }
353
+ }
354
+ }
355
+
356
+ dd {
357
+ margin: 0 0 0 $indent-amount;
358
+ }
359
+
360
+ /**
361
+ * Address paddings set differently in IE 6/7.
362
+ */
363
+
364
+ menu,
365
+ ol,
366
+ ul {
367
+ padding: 0 0 0 $indent-amount;
368
+ }
369
+ }
370
+
371
+ @if support-legacy-browser(ie, "7") {
372
+ /**
373
+ * Correct list images handled incorrectly in IE 7.
374
+ */
375
+
376
+ nav ul,
377
+ nav ol {
378
+ list-style: none;
379
+ list-style-image: none;
380
+ }
381
+ }
382
+
383
+ /* Embedded content
384
+ ========================================================================== */
385
+
386
+ @if support-legacy-browser(ie, "10") {
387
+ /**
388
+ * Remove border when inside `a` element in IE 8/9/10.
389
+ */
390
+
391
+ img {
392
+ border: 0;
393
+ @if support-legacy-browser(ie, "7") {
394
+ /* Improve image quality when scaled in IE 7. */
395
+ -ms-interpolation-mode: bicubic;
396
+ }
397
+ }
398
+ }
399
+
400
+ /**
401
+ * Correct overflow not hidden in IE 9/10/11.
402
+ */
403
+
404
+ svg:not(:root) {
405
+ overflow: hidden;
406
+ }
407
+
408
+ /* Grouping content
409
+ ========================================================================== */
410
+
411
+ @if support-legacy-browser(ie, "9") or support-legacy-browser(safari, "6") {
412
+ /**
413
+ * Address margin not present in IE 8/9 and Safari.
414
+ */
415
+
416
+ figure {
417
+ margin: rhythm(1) $indent-amount;
418
+ }
419
+ }
420
+
421
+ /**
422
+ * Address differences between Firefox and other browsers.
423
+ */
424
+
425
+ hr {
426
+ @include box-sizing(content-box);
427
+ height: 0;
428
+ }
429
+
430
+ /**
431
+ * Contain overflow in all browsers.
432
+ */
433
+
434
+ pre {
435
+ overflow: auto;
436
+ }
437
+
438
+ /**
439
+ * Address odd `em`-unit font size rendering in all browsers.
440
+ */
441
+
442
+ code,
443
+ kbd,
444
+ pre,
445
+ samp {
446
+ font-family: monospace, monospace;
447
+ @if support-legacy-browser(ie, "6") {
448
+ _font-family: 'courier new', monospace;
449
+ }
450
+ font-size: 1em;
451
+ }
452
+
453
+ /* Forms
454
+ ========================================================================== */
455
+
456
+ /**
457
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
458
+ * styling of `select`, unless a `border` property is set.
459
+ */
460
+
461
+ @if support-legacy-browser(ie, "7") {
462
+ /**
463
+ * Correct margin displayed oddly in IE 6/7.
464
+ */
465
+
466
+ form {
467
+ margin: 0;
468
+ }
469
+ }
470
+
471
+ /**
472
+ * 1. Correct color not being inherited.
473
+ * Known issue: affects color of disabled elements.
474
+ * 2. Correct font properties not being inherited.
475
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
476
+ * 4. Address `font-family` inconsistency between `textarea` and other form in IE 7
477
+ * 5. Improve appearance and consistency with IE 6/7.
478
+ */
479
+
480
+ button,
481
+ input,
482
+ optgroup,
483
+ select,
484
+ textarea {
485
+ color: inherit; /* 1 */
486
+ font: inherit; /* 2 */
487
+ margin: 0; /* 3 */
488
+ @if support-legacy-browser(ie, "7") {
489
+ *font-family: $base-font-family; /* 4 */
490
+ *vertical-align: middle; /* 5 */
491
+ }
492
+ }
493
+
494
+ /**
495
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
496
+ */
497
+
498
+ button {
499
+ overflow: visible;
500
+ }
501
+
502
+ /**
503
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
504
+ * All other form control elements do not inherit `text-transform` values.
505
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
506
+ * Correct `select` style inheritance in Firefox.
507
+ */
508
+
509
+ button,
510
+ select {
511
+ text-transform: none;
512
+ }
513
+
514
+ /**
515
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
516
+ * and `video` controls.
517
+ * 2. Correct inability to style clickable `input` types in iOS.
518
+ * 3. Improve usability and consistency of cursor style between image-type
519
+ * `input` and others.
520
+ * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
521
+ * Known issue: inner spacing remains in IE 6.
522
+ */
523
+
524
+ button,
525
+ html input[type="button"], /* 1 */
526
+ input[type="reset"],
527
+ input[type="submit"] {
528
+ -webkit-appearance: button; /* 2 */
529
+ cursor: pointer; /* 3 */
530
+ @if support-legacy-browser(ie, "7") {
531
+ *overflow: visible; /* 4 */
532
+ }
533
+ }
534
+
535
+ /**
536
+ * Re-set default cursor for disabled elements.
537
+ */
538
+
539
+ button[disabled],
540
+ html input[disabled] {
541
+ cursor: default;
542
+ }
543
+
544
+ /**
545
+ * Remove inner padding and border in Firefox 4+.
546
+ */
547
+
548
+ button::-moz-focus-inner,
549
+ input::-moz-focus-inner {
550
+ border: 0;
551
+ padding: 0;
552
+ }
553
+
554
+ /**
555
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
556
+ * the UA stylesheet.
557
+ */
558
+
559
+ input {
560
+ line-height: normal;
561
+ }
562
+
563
+ @if support-legacy-browser(ie, "10") {
564
+ /**
565
+ * It's recommended that you don't attempt to style these elements.
566
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
567
+ *
568
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
569
+ * 2. Remove excess padding in IE 8/9/10.
570
+ * 3. Remove excess padding in IE 7.
571
+ * Known issue: excess padding remains in IE 6.
572
+ */
573
+
574
+ input[type="checkbox"],
575
+ input[type="radio"] {
576
+ @include box-sizing(border-box); /* 1 */
577
+ padding: 0; /* 2 */
578
+ @if support-legacy-browser(ie, "7") {
579
+ *height: 13px; /* 3 */
580
+ *width: 13px; /* 3 */
581
+ }
582
+ }
583
+ }
584
+
585
+ /**
586
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
587
+ * `font-size` values of the `input`, it causes the cursor style of the
588
+ * decrement button to change from `default` to `text`.
589
+ */
590
+
591
+ input[type="number"]::-webkit-inner-spin-button,
592
+ input[type="number"]::-webkit-outer-spin-button {
593
+ height: auto;
594
+ }
595
+
596
+ /**
597
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
598
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
599
+ * (include `-moz` to future-proof).
600
+ */
601
+
602
+ input[type="search"] {
603
+ -webkit-appearance: textfield; /* 1 */
604
+ @include box-sizing(content-box); /* 2 */
605
+
606
+ /**
607
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
608
+ * Safari (but not Chrome) clips the cancel button when the search input has
609
+ * padding (and `textfield` appearance).
610
+ */
611
+
612
+ &::-webkit-search-cancel-button,
613
+ &::-webkit-search-decoration {
614
+ -webkit-appearance: none;
615
+ }
616
+ }
617
+
618
+ /**
619
+ * Define consistent border, margin, and padding.
620
+ */
621
+
622
+ fieldset {
623
+ margin: 0 2px;
624
+ /* Apply borders and padding that keep the vertical rhythm. */
625
+ border-color: #c0c0c0;
626
+ @include apply-side-rhythm-border(top, $width: 1px, $lines: 0.35 );
627
+ @include apply-side-rhythm-border(bottom, $width: 1px, $lines: 0.65 );
628
+ @include apply-side-rhythm-border(left, $width: 1px, $lines: 0.625);
629
+ @include apply-side-rhythm-border(right, $width: 1px, $lines: 0.625);
630
+ }
631
+
632
+ /**
633
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
634
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
635
+ * 3. Correct alignment displayed oddly in IE 6/7.
636
+ */
637
+
638
+ legend {
639
+ @if support-legacy-browser(ie, "11") {
640
+ border: 0; /* 1 */
641
+ }
642
+ padding: 0; /* 2 */
643
+ @if support-legacy-browser(ie, "7") {
644
+ *margin-left: -7px; /* 3 */
645
+ }
646
+ }
647
+
648
+ /**
649
+ * Remove default vertical scrollbar in IE 8/9/10/11.
650
+ */
651
+
652
+ textarea {
653
+ overflow: auto;
654
+ }
655
+
656
+ /**
657
+ * Don't inherit the `font-weight` (applied by a rule above).
658
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
659
+ */
660
+
661
+ optgroup {
662
+ font-weight: bold;
663
+ }
664
+
665
+ /* Tables
666
+ ========================================================================== */
667
+
668
+ /**
669
+ * Remove most spacing between table cells.
670
+ */
671
+
672
+ table {
673
+ border-collapse: collapse;
674
+ border-spacing: 0;
675
+ }
676
+
677
+ td,
678
+ th {
679
+ padding: 0;
680
+ }
@@ -1,3 +1,4 @@
1
+ @import "_normalize"
1
2
  @import "_rbbt"
2
3
 
3
4
  @import "style"
@@ -1,4 +1,3 @@
1
- @import 'grid_system'
2
1
  @import 'colors'
3
2
 
4
3
  =rbbt_button($color_text: $color_alt, $color_bg: $color_main)
@@ -15,6 +15,9 @@
15
15
  min-width: 70%
16
16
  max-height: 90%
17
17
  margin: 50px
18
+ @media #{$not-large}
19
+ margin-left: 10px
20
+ margin-right: 10px
18
21
  overflow: auto
19
22
  & > .header
20
23
  font-size: 1.5em
@@ -17,6 +17,7 @@
17
17
 
18
18
 
19
19
  -# record_css '/plugins/zurb-icons/foundation_icons_general/stylesheets/general_foundicons.css'
20
+ -# record_css 'https://github.com/necolas/normalize.css/blob/master/normalize.css'
20
21
  - record_css '/plugins/foundation-icons/foundation-icons.css'
21
22
  - record_css '/stylesheets/app'
22
23
  = serve_css
@@ -26,7 +27,6 @@
26
27
 
27
28
  // Third party frameworks
28
29
 
29
- -# record_js '/plugins/json/json2.js'
30
30
  - record_js "/plugins/underscore/js/underscore.js"
31
31
 
32
32
  = serve_js
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rbbt-rest
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.8
4
+ version: 1.4.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Miguel Vazquez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-17 00:00:00.000000000 Z
11
+ date: 2014-10-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -215,6 +215,7 @@ files:
215
215
  - lib/rbbt/rest/workflow/locate.rb
216
216
  - lib/rbbt/rest/workflow/render.rb
217
217
  - share/views/association/Default.haml
218
+ - share/views/compass/_normalize.scss
218
219
  - share/views/compass/_rbbt.sass
219
220
  - share/views/compass/actions.sass
220
221
  - share/views/compass/app.sass