romo 0.9.0 → 0.10.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -139,15 +139,23 @@
139
139
 
140
140
  /* color emphasis */
141
141
 
142
- @mixin bg-base($i:"") { background-color: $baseBackground #{$i}; }
143
- @mixin bg-alt($i:"") { background-color: $altBackground #{$i}; }
144
- @mixin bg-striped($i:"") { background-color: $stripedBackground #{$i}; }
145
- @mixin bg-hover($i:"") { background-color: $backgroundHover #{$i}; }
142
+ @mixin bg-striped($i:"") { background-color: $stripedBgColor #{$i}; }
143
+ @mixin bg-hover($i:"") { background-color: $bgColorHover #{$i}; }
146
144
 
147
- @mixin border-base($i:"") { border-color: $baseBorderColor #{$i}; }
148
- @mixin border-alt($i:"") { border-color: $altBorderColor #{$i}; }
149
- @mixin text-border-base($i:"") { color: $baseBorderColor #{$i}; }
150
- @mixin text-border-alt($i:"") { color: $altBorderColor #{$i}; }
145
+ @mixin text-border-base($i:"") { color: $baseBorderColor #{$i}; }
146
+ @mixin text-border-alt($i:"") { color: $altBorderColor #{$i}; }
147
+
148
+ @mixin text-base($i:"") { color: $baseText #{$i}; }
149
+ @mixin text-base-hover($i:"") { color: $baseTextHover #{$i}; }
150
+ @mixin bg-base($i:"") { background-color: $baseBackground #{$i}; }
151
+ @mixin bg-base-hover($i:"") { background-color: $baseBackgroundHover #{$i}; }
152
+ @mixin border-base($i:"") { border-color: $baseBorder #{$i}; }
153
+
154
+ @mixin text-alt($i:"") { color: $altText #{$i}; }
155
+ @mixin text-alt-hover($i:"") { color: $altTextHover #{$i}; }
156
+ @mixin bg-alt($i:"") { background-color: $altBackground #{$i}; }
157
+ @mixin bg-alt-hover($i:"") { background-color: $altBackgroundHover #{$i}; }
158
+ @mixin border-alt($i:"") { border-color: $altBorder #{$i}; }
151
159
 
152
160
  @mixin text-muted($i:"") { color: $mutedText #{$i}; }
153
161
  @mixin text-muted-hover($i:"") { color: $mutedTextHover #{$i}; }
@@ -221,7 +229,7 @@
221
229
  line-height: $lineHeight0;
222
230
 
223
231
  background-color: $inputColor;
224
- color: $inputBackground;
232
+ color: $inputBgColor;
225
233
  }
226
234
 
227
235
  @mixin select-option {
@@ -229,7 +237,7 @@
229
237
  line-height: $baseLineHeight;
230
238
  padding: 0 $spacingSize0;
231
239
 
232
- background-color: $inputBackground;
240
+ background-color: $inputBgColor;
233
241
  color: $inputColor;
234
242
  }
235
243
 
@@ -35,34 +35,35 @@ $notAllowedCursor: not-allowed;
35
35
 
36
36
  /* colors */
37
37
 
38
- $baseBackground: #fff;
39
- $altBackground: #ededed;
40
- $stripedBackground: #fafafa;
41
- $backgroundHover: #f5f5f5;
42
-
43
38
  $baseColor: #444;
39
+ $altColor: #444;
44
40
  $disabledColor: #999;
45
41
 
42
+ $baseBgColor: #fff;
43
+ $altBgColor: #ededed;
44
+ $stripedBgColor: #fafafa;
45
+ $bgColorHover: #f5f5f5;
46
+
46
47
  $baseBorderColor: #ccc;
47
48
  $altBorderColor: #fff;
48
49
 
49
50
  $linkColor: #08c;
50
51
  $linkColorHover: darken($linkColor, 15%);
51
52
 
52
- $inputBackground: #fff;
53
- $inputAltBackground: #eee;
54
- $inputColor: #444;
55
- $inputDisabledColor: #eee;
56
- $inputFocusColor: rgba(82, 168, 236, 0.8);
57
- $inputHighlightBackround: #3c83c7;
53
+ $inputBgColor: #fff;
54
+ $inputAltBgColor: #eee;
55
+ $inputColor: #444;
56
+ $inputDisabledColor: #eee;
57
+ $inputFocusColor: rgba(82, 168, 236, 0.8);
58
+ $inputHighlightBgColor: #3c83c7;
58
59
 
59
60
  $btnBorder: $baseBorderColor;
60
- $btnBackground: $baseBackground;
61
+ $btnBackground: $baseBgColor;
61
62
  $btnBackgroundHighlight: darken($btnBackground, 10%);
62
63
  $btnColor: $baseColor;
63
64
  $btnColorHover: #333;
64
65
 
65
- $btnAltBackground: $altBackground;
66
+ $btnAltBackground: $altBgColor;
66
67
  $btnAltBackgroundHighlight: darken($btnAltBackground, 10%);
67
68
  $btnAltColor: $btnColor;
68
69
 
@@ -90,6 +91,18 @@ $btnInverseBackground: #444;
90
91
  $btnInverseBackgroundHighlight: #222;
91
92
  $btnInverseColor: #fff;
92
93
 
94
+ $baseText: $baseColor;
95
+ $baseTextHover: $baseText;
96
+ $baseBackground: $baseBgColor;
97
+ $baseBackgroundHover: $baseBackground;
98
+ $baseBorder: $baseBorderColor;
99
+
100
+ $altText: $altColor;
101
+ $altTextHover: $altColor;
102
+ $altBackground: $altBgColor;
103
+ $altBackgroundHover: $altBackground;
104
+ $altBorder: $altBorderColor;
105
+
93
106
  $mutedText: #999999;
94
107
  $mutedTextHover: darken($mutedText, 10%);
95
108
  $mutedBackground: #f9f9f9;
@@ -126,15 +139,15 @@ $inverseBackground: #444444;
126
139
  $inverseBackgroundHover: darken($inverseBackground, 5%);
127
140
  $inverseBorder: darken(adjust_hue($inverseBackground, -10), 3%);
128
141
 
129
- $tabBackground: $altBackground;
130
- $tabBackgroundHover: darken($altBackground, 5%);
131
- $tabBackgroundActive: #222;
132
- $tabColor: $baseColor;
133
- $tabColorActive: #fff;
134
- $tabColorDisabled: $disabledColor;
142
+ $tabBgColor: $altBgColor;
143
+ $tabBgColorHover: darken($altBgColor, 5%);
144
+ $tabBgColorActive: #222;
145
+ $tabColor: $baseColor;
146
+ $tabColorActive: #fff;
147
+ $tabColorDisabled: $disabledColor;
135
148
 
136
- $tooltipBackground: #222;
137
- $tooltipColor: #eee;
149
+ $tooltipBgColor: #222;
150
+ $tooltipColor: #eee;
138
151
 
139
152
  /* borders */
140
153
 
@@ -97,7 +97,7 @@ a.romo-text {
97
97
  .romo-img-circle { @include border-radius(500px); }
98
98
  .romo-img-card {
99
99
  padding: 3px;
100
- background-color: $baseBackground;
100
+ background-color: $baseBgColor;
101
101
  border: 1px solid;
102
102
  border: 1px solid rgba(0, 0, 0, 0.2);
103
103
  @include box-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
@@ -224,6 +224,8 @@ h3 { @include text1; }
224
224
 
225
225
  .romo-text-border-base { @include text-border-base(!important); }
226
226
  .romo-text-border-alt { @include text-border-alt(!important); }
227
+ .romo-text-base { @include text-base(!important); }
228
+ .romo-text-alt { @include text-alt(!important); }
227
229
  .romo-text-muted { @include text-muted(!important); }
228
230
  .romo-text-warning { @include text-warning(!important); }
229
231
  .romo-text-error { @include text-error(!important); }
@@ -231,6 +233,12 @@ h3 { @include text1; }
231
233
  .romo-text-success { @include text-success(!important); }
232
234
  .romo-text-inverse { @include text-inverse(!important); }
233
235
 
236
+ .romo-text-base-hover:hover, a.romo-text-base:hover, a.romo-text-base:focus {
237
+ @include text-base-hover(!important);
238
+ }
239
+ .romo-text-alt-hover:hover, a.romo-text-alt:hover, a.romo-text-alt:focus {
240
+ @include text-alt-hover(!important);
241
+ }
234
242
  .romo-text-muted-hover:hover, a.romo-text-muted:hover, a.romo-text-muted:focus {
235
243
  @include text-muted-hover(!important);
236
244
  }
@@ -250,6 +258,8 @@ h3 { @include text1; }
250
258
  @include text-inverse-hover(!important);
251
259
  }
252
260
 
261
+ .romo-bg-base { @include bg-base(!important); }
262
+ .romo-bg-alt { @include bg-alt(!important); }
253
263
  .romo-bg-muted { @include bg-muted(!important); }
254
264
  .romo-bg-warning { @include bg-warning(!important); }
255
265
  .romo-bg-error { @include bg-error(!important); }
@@ -257,6 +267,12 @@ h3 { @include text1; }
257
267
  .romo-bg-success { @include bg-success(!important); }
258
268
  .romo-bg-inverse { @include bg-inverse(!important); }
259
269
 
270
+ .romo-bg-base-hover:hover, a.romo-bg-base:hover, a.romo-bg-base:focus {
271
+ @include bg-base-hover(!important);
272
+ }
273
+ .romo-bg-alt-hover:hover, a.romo-bg-alt:hover, a.romo-bg-alt:focus {
274
+ @include bg-alt-hover(!important);
275
+ }
260
276
  .romo-bg-muted-hover:hover, a.romo-bg-muted:hover, a.romo-bg-muted:focus {
261
277
  @include bg-muted-hover(!important);
262
278
  }
@@ -517,6 +533,9 @@ h3 { @include text1; }
517
533
  .romo-border2-bottom-left-radius-hover:hover { @include border2-bottom-left-radius(!important); }
518
534
  .romo-rm-border-bottom-left-radius-hover:hover { @include rm-border-bottom-left-radius(!important); }
519
535
 
536
+ .romo-border-radius-circle { @include border-radius(500px); }
537
+ .romo-border-radius-circle-hover:hover { @include border-radius(500px); }
538
+
520
539
  /* spacing */
521
540
 
522
541
  .romo-pad,
@@ -20,7 +20,7 @@
20
20
  padding: $spacingSize0;
21
21
  @include user-select(none);
22
22
 
23
- background-color: $inputBackground;
23
+ background-color: $inputBgColor;
24
24
  color: $inputColor;
25
25
  }
26
26
 
@@ -44,13 +44,13 @@
44
44
  }
45
45
 
46
46
  .romo-datepicker-calendar TD.romo-datepicker-day-weekend {
47
- background: $inputAltBackground;
47
+ background: $inputAltBgColor;
48
48
  }
49
49
 
50
50
  .romo-datepicker-calendar .romo-datepicker-prev:hover,
51
51
  .romo-datepicker-calendar .romo-datepicker-next:hover,
52
52
  .romo-datepicker-calendar TD.romo-datepicker-day.romo-datepicker-highlight:not(.disabled) {
53
- background: darken($inputAltBackground, 10%);
53
+ background: darken($inputAltBgColor, 10%);
54
54
  }
55
55
 
56
56
  .romo-datepicker-calendar TD.romo-datepicker-day.disabled {
@@ -68,6 +68,6 @@
68
68
 
69
69
  .romo-datepicker-calendar TD.romo-datepicker-day.selected,
70
70
  .romo-datepicker-calendar TD.romo-datepicker-day.selected.romo-datepicker-highlight {
71
- background-color: $inputHighlightBackround;
72
- color: $inputBackground;
71
+ background-color: $inputHighlightBgColor;
72
+ color: $inputBgColor;
73
73
  }
@@ -11,7 +11,7 @@
11
11
  float: left;
12
12
  @include border0;
13
13
 
14
- background-color: $baseBackground;
14
+ background-color: $baseBgColor;
15
15
  border-color: $baseBorderColor;
16
16
  border-color: rgba(0, 0, 0, 0.2);
17
17
  }
@@ -62,7 +62,7 @@ label { display: block; }
62
62
 
63
63
  .romo-form select {
64
64
  font-weight: normal;
65
- background-color: $inputBackground;
65
+ background-color: $inputBgColor;
66
66
  @include border1;
67
67
  }
68
68
  .romo-form select optgroup { @include select-optgroup; }
@@ -84,7 +84,7 @@ label { display: block; }
84
84
  .romo-form input[type="tel"],
85
85
  .romo-form input[type="color"] {
86
86
  font-weight: normal;
87
- background-color: $inputBackground;
87
+ background-color: $inputBgColor;
88
88
  @include border1;
89
89
  @include box-shadow(inset 0 1px 1px rgba(0, 0, 0, 0.075));
90
90
  }
@@ -31,6 +31,8 @@ ol.romo-grid-table { @include list-unstyled(!important); }
31
31
  .romo-grid-table-striped.romo-grid-table-header.romo-grid-table-striped-alt > .romo-row:nth-child(even) { @include bg-base; }
32
32
  .romo-grid-table-striped.romo-grid-table-striped-alt { @include bg-striped; }
33
33
 
34
+ .romo-grid-table .romo-row.romo-base { @include bg-base; }
35
+ .romo-grid-table .romo-row.romo-alt { @include bg-alt; }
34
36
  .romo-grid-table .romo-row.romo-muted { @include bg-muted; }
35
37
  .romo-grid-table .romo-row.romo-warning { @include bg-warning; }
36
38
  .romo-grid-table .romo-row.romo-error { @include bg-error; }
@@ -43,6 +45,10 @@ ol.romo-grid-table { @include list-unstyled(!important); }
43
45
  .romo-grid-table-hover.romo-grid-table-header > .romo-row:not(:first-child):hover,
44
46
  .romo-grid-table-hover.romo-grid-table-header.romo-grid-table-alt > .romo-row:not(:first-child):hover { @include bg-hover; }
45
47
 
48
+ .romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-base:hover,
49
+ .romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-base:not(:first-child):hover { @include bg-base-hover; }
50
+ .romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-alt:hover,
51
+ .romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-alt:not(:first-child):hover { @include bg-alt-hover; }
46
52
  .romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-muted:hover,
47
53
  .romo-grid-table-hover.romo-grid-table-header > .romo-row.romo-muted:not(:first-child):hover { @include bg-muted-hover; }
48
54
  .romo-grid-table-hover:not(.romo-grid-table-header) > .romo-row.romo-warning:hover,
@@ -22,7 +22,7 @@
22
22
  @include border0;
23
23
  @include box-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
24
24
 
25
- background-color: $baseBackground;
25
+ background-color: $baseBgColor;
26
26
  border-color: $baseBorderColor;
27
27
  border-color: rgba(0, 0, 0, 0.2);
28
28
  }
@@ -49,7 +49,7 @@
49
49
  padding: 4px 0;
50
50
  @include user-select(none);
51
51
 
52
- background-color: $inputBackground;
52
+ background-color: $inputBgColor;
53
53
  color: $inputColor;
54
54
  }
55
55
 
@@ -74,8 +74,8 @@
74
74
  }
75
75
 
76
76
  .romo-select-option-list LI.romo-select-highlight {
77
- background-color: $inputHighlightBackround;
78
- color: $inputBackground;
77
+ background-color: $inputHighlightBgColor;
78
+ color: $inputBgColor;
79
79
  }
80
80
 
81
81
  .romo-select-option-list LI.disabled {
@@ -84,6 +84,6 @@
84
84
 
85
85
  .romo-select-option-list LI.disabled,
86
86
  .romo-select-option-list LI.disabled.romo-select-highlight {
87
- background-color: $inputBackground;
87
+ background-color: $inputBgColor;
88
88
  color: $disabledColor;
89
89
  }
@@ -21,6 +21,8 @@
21
21
  .romo-table-striped.romo-table-striped-alt tbody > tr:nth-child(odd) { @include bg-base; }
22
22
  .romo-table-striped.romo-table-striped-alt { @include bg-striped; }
23
23
 
24
+ .romo-table tr.romo-base { @include bg-base; }
25
+ .romo-table tr.romo-alt { @include bg-alt; }
24
26
  .romo-table tr.romo-muted { @include bg-muted; }
25
27
  .romo-table tr.romo-warning { @include bg-warning; }
26
28
  .romo-table tr.romo-error { @include bg-error; }
@@ -31,6 +33,8 @@
31
33
  .romo-table-hover tbody tr:hover,
32
34
  .romo-table-hover.romo-table-alt tbody tr:hover { @include bg-hover; }
33
35
 
36
+ .romo-table-hover tbody tr.romo-base:hover { @include bg-base-hover; }
37
+ .romo-table-hover tbody tr.romo-alt:hover { @include bg-alt-hover; }
34
38
  .romo-table-hover tbody tr.romo-muted:hover { @include bg-muted-hover; }
35
39
  .romo-table-hover tbody tr.romo-warning:hover { @include bg-warning-hover; }
36
40
  .romo-table-hover tbody tr.romo-error:hover { @include bg-error-hover; }
@@ -56,21 +60,23 @@
56
60
  .romo-table-border2 th, .romo-table-border2 td { @include border2-bottom; @include border2-right; }
57
61
  .romo-table-border-none th, .romo-table-border-none td { @include border-style(none); }
58
62
 
63
+ .romo-table-border-base { @include border-base; }
64
+ .romo-table-border-alt { @include border-alt; }
59
65
  .romo-table-border-muted { @include border-muted; }
60
66
  .romo-table-border-warning { @include border-warning; }
61
67
  .romo-table-border-error { @include border-error; }
62
68
  .romo-table-border-info { @include border-info; }
63
69
  .romo-table-border-success { @include border-success; }
64
70
  .romo-table-border-inverse { @include border-inverse; }
65
- .romo-table-border-alt { @include border-alt; }
66
71
 
72
+ .romo-table-border-base th, .romo-table-border-base td { @include border-base; }
73
+ .romo-table-border-alt th, .romo-table-border-alt td { @include border-alt; }
67
74
  .romo-table-border-muted th, .romo-table-border-muted td { @include border-muted; }
68
75
  .romo-table-border-warning th, .romo-table-border-warning td { @include border-warning; }
69
76
  .romo-table-border-error th, .romo-table-border-error td { @include border-error; }
70
77
  .romo-table-border-info th, .romo-table-border-info td { @include border-info; }
71
78
  .romo-table-border-success th, .romo-table-border-success td { @include border-success; }
72
79
  .romo-table-border-inverse th, .romo-table-border-inverse td { @include border-inverse; }
73
- .romo-table-border-alt th, .romo-table-border-alt td { @include border-alt; }
74
80
 
75
81
  .romo-table-pad th, .romo-table-pad td,
76
82
  .romo-table-pad1 th, .romo-table-pad1 td { @include pad1; }
@@ -8,7 +8,7 @@
8
8
  @include list-unstyled;
9
9
  @include clearfix;
10
10
 
11
- border-bottom: $tabDividerSize solid $tabBackgroundActive;
11
+ border-bottom: $tabDividerSize solid $tabBgColorActive;
12
12
  }
13
13
 
14
14
  .romo-tabs > li {
@@ -25,22 +25,22 @@
25
25
  cursor: pointer;
26
26
 
27
27
  @include border1;
28
- background-color: $tabBackground;
29
- border-color: $tabBackground;
28
+ background-color: $tabBgColor;
29
+ border-color: $tabBgColor;
30
30
  color: $tabColor;
31
31
 
32
32
  &:hover,
33
33
  &:focus {
34
34
  outline: 0;
35
35
  text-decoration: none;
36
- background-color: $tabBackgroundHover;
37
- border-color: $tabBackgroundHover;
36
+ background-color: $tabBgColorHover;
37
+ border-color: $tabBgColorHover;
38
38
  }
39
39
  }
40
40
 
41
41
  .romo-tabs > li.active > a {
42
- background-color: $tabBackgroundActive;
43
- border-color: $tabBackgroundActive;
42
+ background-color: $tabBgColorActive;
43
+ border-color: $tabBgColorActive;
44
44
  color: $tabColorActive;
45
45
  }
46
46
 
@@ -51,8 +51,8 @@
51
51
 
52
52
  &:hover,
53
53
  &:focus {
54
- background-color: $tabBackground;
55
- border-color: $tabBackgroundHover;
54
+ background-color: $tabBgColor;
55
+ border-color: $tabBgColorHover;
56
56
  }
57
57
  }
58
58
 
@@ -67,5 +67,5 @@
67
67
  .romo-tabs.romo-tabs-stacked { @include rm-border; }
68
68
  .romo-tabs.romo-tabs-stacked > li { float: none; }
69
69
  .romo-tabs.romo-tabs-stacked > li > a { @include border1; border-color: $baseBorderColor; }
70
- .romo-tabs.romo-tabs-stacked > li.active > a { border-color: $tabBackgroundActive; }
70
+ .romo-tabs.romo-tabs-stacked > li.active > a { border-color: $tabBgColorActive; }
71
71
  .romo-tabs.romo-tabs-stacked > li:not(:last-child) > a { @include rm-border-bottom; }
@@ -71,19 +71,19 @@
71
71
  /* theme */
72
72
 
73
73
  .romo-tooltip-popup {
74
- background-color: $tooltipBackground;
74
+ background-color: $tooltipBgColor;
75
75
  color: $tooltipColor;
76
76
  }
77
77
 
78
78
  .romo-tooltip-popup[data-romo-tooltip-position="top"] .romo-tooltip-arrow {
79
- border-top-color: $tooltipBackground;
79
+ border-top-color: $tooltipBgColor;
80
80
  }
81
81
  .romo-tooltip-popup[data-romo-tooltip-position="right"] .romo-tooltip-arrow {
82
- border-right-color: $tooltipBackground;
82
+ border-right-color: $tooltipBgColor;
83
83
  }
84
84
  .romo-tooltip-popup[data-romo-tooltip-position="bottom"] .romo-tooltip-arrow {
85
- border-bottom-color: $tooltipBackground;
85
+ border-bottom-color: $tooltipBgColor;
86
86
  }
87
87
  .romo-tooltip-popup[data-romo-tooltip-position="left"] .romo-tooltip-arrow {
88
- border-left-color: $tooltipBackground;
88
+ border-left-color: $tooltipBgColor;
89
89
  }
data/lib/romo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Romo
2
- VERSION = "0.9.0"
2
+ VERSION = "0.10.0"
3
3
  end
metadata CHANGED
@@ -1,39 +1,50 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: romo
3
- version: !ruby/object:Gem::Version
4
- version: 0.9.0
3
+ version: !ruby/object:Gem::Version
4
+ hash: 55
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 10
9
+ - 0
10
+ version: 0.10.0
5
11
  platform: ruby
6
- authors:
12
+ authors:
7
13
  - Kelly Redding
8
14
  - Collin Redding
9
15
  autorequire:
10
16
  bindir: bin
11
17
  cert_chain: []
12
- date: 2015-07-06 00:00:00.000000000 Z
13
- dependencies:
14
- - !ruby/object:Gem::Dependency
15
- name: assert
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: '2.12'
18
+
19
+ date: 2015-09-18 00:00:00 Z
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ requirement: &id001 !ruby/object:Gem::Requirement
23
+ none: false
24
+ requirements:
25
+ - - ~>
26
+ - !ruby/object:Gem::Version
27
+ hash: 27
28
+ segments:
29
+ - 2
30
+ - 12
31
+ version: "2.12"
21
32
  type: :development
33
+ name: assert
34
+ version_requirements: *id001
22
35
  prerelease: false
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - "~>"
26
- - !ruby/object:Gem::Version
27
- version: '2.12'
28
36
  description: A UI Toolkit
29
- email:
37
+ email:
30
38
  - kelly@kellyredding.com
31
39
  - collin.redding@me.com
32
40
  executables: []
41
+
33
42
  extensions: []
43
+
34
44
  extra_rdoc_files: []
35
- files:
36
- - ".gitignore"
45
+
46
+ files:
47
+ - .gitignore
37
48
  - Gemfile
38
49
  - LICENSE.txt
39
50
  - README.md
@@ -85,30 +96,39 @@ files:
85
96
  - test/unit/romo_tests.rb
86
97
  - tmp/.gitkeep
87
98
  homepage: http://github.com/redding/romo
88
- licenses:
99
+ licenses:
89
100
  - MIT
90
- metadata: {}
91
101
  post_install_message:
92
102
  rdoc_options: []
93
- require_paths:
103
+
104
+ require_paths:
94
105
  - lib
95
- required_ruby_version: !ruby/object:Gem::Requirement
96
- requirements:
106
+ required_ruby_version: !ruby/object:Gem::Requirement
107
+ none: false
108
+ requirements:
97
109
  - - ">="
98
- - !ruby/object:Gem::Version
99
- version: '0'
100
- required_rubygems_version: !ruby/object:Gem::Requirement
101
- requirements:
110
+ - !ruby/object:Gem::Version
111
+ hash: 3
112
+ segments:
113
+ - 0
114
+ version: "0"
115
+ required_rubygems_version: !ruby/object:Gem::Requirement
116
+ none: false
117
+ requirements:
102
118
  - - ">="
103
- - !ruby/object:Gem::Version
104
- version: '0'
119
+ - !ruby/object:Gem::Version
120
+ hash: 3
121
+ segments:
122
+ - 0
123
+ version: "0"
105
124
  requirements: []
125
+
106
126
  rubyforge_project:
107
- rubygems_version: 2.4.5
127
+ rubygems_version: 1.8.29
108
128
  signing_key:
109
- specification_version: 4
129
+ specification_version: 3
110
130
  summary: A UI Toolkit
111
- test_files:
131
+ test_files:
112
132
  - test/helper.rb
113
133
  - test/support/.gitkeep
114
134
  - test/system/.gitkeep
checksums.yaml DELETED
@@ -1,7 +0,0 @@
1
- ---
2
- SHA1:
3
- metadata.gz: 3ef654b46bb779368cdcececf57e0b1a5c1216de
4
- data.tar.gz: 2e89bacbd83f1f91ccd8003df65d5c0e695db743
5
- SHA512:
6
- metadata.gz: b10abe6fb0a90f309f3e21ad61c337c9fdb83bd7bf577108f076840131013b2889176057794a3550a2175776534f21c9aff934cb5c61a9c4cd4efd4fb94d5190
7
- data.tar.gz: 3d6b7404d4480dd978ef004cb692fdf7b2c317f169833ff9ed262dd0b1a8077d9a4adb6d6ddd3c728b96e3adc5acd73f8e2c87da156855e92b6dab1ebc2e9296