ama_css 0.0.4 → 0.0.5

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: e6bd669d6d70de6080bacf477e88c09cf611a26c
4
- data.tar.gz: 0a7518b2514350d875e6356c08a46e5a36aa115b
3
+ metadata.gz: 5cbadd471e95f6e2f87553d4bf962429950284e2
4
+ data.tar.gz: c1eefeb783d80ce86f2b8b4d9fc04da34d368f44
5
5
  SHA512:
6
- metadata.gz: 449ca6edaa39b39fd5d53e93e45ce0f4b5994427e51581db4b58b5e3a4a01ffd9b55d89dfe67a13c4a3041b547b22d430835e41d62cc5d28ea10a28a26108abf
7
- data.tar.gz: a2a550233a54f6c633a75b10e8161371f0ce8f1927d9b9509b2d686108e00fd802b60e080a0952f4d735a0ea7bc2f3725e05ec148e26127c26d91d7337e22008
6
+ metadata.gz: 30e3b01a7a0d4649ac03f0977332637366ac86a27c052f481caaa2aa99206309701c4a3bd4b4ef5d7c2e6f507504ad8d2921a27ac6444d4b8b8193370d2bf075
7
+ data.tar.gz: 51172d2819d075c63cc58af45c1caa9b35ee3dfe924b086645b7c4f14415a0792eb0ce82a9c077f955bd1d687835818cb94770b4406abf50534f477d393055e2
data/CHANGELOG.md ADDED
@@ -0,0 +1,9 @@
1
+ ## 2014-12-15
2
+
3
+ Features:
4
+
5
+ * Added missing assets and styles for AMA layouts. ([#6][], [@mvandenbeuken][])
6
+
7
+ <!--- The following link definition list is generated by PimpMyChangelog --->
8
+ [#6]: https://github.com/amaabca/ama_css/issues/6
9
+ [@mvandenbeuken]: https://github.com/mvandenbeuken
@@ -0,0 +1,8 @@
1
+ @import "neat-helpers";
2
+ $visual-grid:false;
3
+ $mobile: new-breakpoint(max-width 767px 8);
4
+ // Change the grid settings
5
+ $column: 12.5px;
6
+ $gutter: 10px;
7
+ $grid-columns: 8;
8
+ $max-width: 100%;
@@ -0,0 +1,15 @@
1
+ @import "bourbon";
2
+ @import "grid_mobile.settings";
3
+ @import "neat";
4
+ @import "variables";
5
+ @import "base/normalize";
6
+ @import "base/elements";
7
+ @import "base/icons-social";
8
+ @import "base/icons-line";
9
+ @import "base/icons-block";
10
+ @import "layout/layout.mobile";
11
+ @import "modules/tab-bar";
12
+ @import "modules/module.mobile";
13
+ @import "modules/login";
14
+ @import "modules/forms";
15
+ @import "theme/theme";
@@ -1,18 +1,17 @@
1
1
  @import "bourbon";
2
2
  @import "grid.settings";
3
3
  @import "neat";
4
-
5
4
  @import "variables";
6
5
  @import "base/normalize";
7
6
  @import "base/elements";
8
7
  @import "base/icons-line";
9
8
  @import "base/icons-block";
10
9
  @import "base/icons-social";
11
-
12
10
  @import "layout/layout";
13
11
  @import "layout/components";
14
12
  @import "modules/module";
15
13
  @import "modules/login";
16
14
  @import "modules/forms";
17
-
18
- @import "theme/theme";
15
+ @import "modules/menus";
16
+ @import "modules/dropdown";
17
+ @import "theme/theme";
@@ -0,0 +1,133 @@
1
+ body{
2
+ padding:0;
3
+ }
4
+ .container-fixed{
5
+ @include outer-container;
6
+ margin-bottom:$base-margin*2;
7
+ }
8
+ .container-fluid{
9
+ @include outer-container;
10
+ background:$color-white;
11
+ padding: $base-padding;
12
+ margin-bottom:$base-margin*2;
13
+ }
14
+ /*grid*/
15
+ .layout-side{
16
+ @include span-columns(2);
17
+ margin-bottom:$base-margin;
18
+ }
19
+
20
+ .layout-middle{
21
+ @include span-columns(8);
22
+ }
23
+ .layout-full{
24
+ @include outer-container;
25
+ @include span-columns(8);
26
+ @include omega;
27
+ }
28
+ .inner-half{
29
+ @include span-columns(4);
30
+ @extend %clearance;
31
+ }
32
+ .inner-quarter{
33
+ @include span-columns(2);
34
+ @extend %clearance;
35
+ }
36
+ .inner-quarter-3{
37
+ @include span-columns(6);
38
+ @extend %clearance;
39
+ }
40
+ .inner-full{
41
+ @include span-columns(8);
42
+ @include omega;
43
+ @extend %clearance;
44
+ }
45
+
46
+ .grid-1{
47
+ @include span-columns(1);
48
+ @extend %clearance;
49
+ }
50
+ .grid-2{
51
+ @include span-columns(2);
52
+ @extend %clearance;
53
+ }
54
+ .grid-3{
55
+ @include span-columns(3);
56
+ @extend %clearance;
57
+ }
58
+ .grid-4{
59
+ @include span-columns(4);
60
+ @extend %clearance;
61
+ }
62
+ .grid-5{
63
+ @include span-columns(5);
64
+ @extend %clearance;
65
+ }
66
+ .grid-6{
67
+ @include span-columns(6);
68
+ @extend %clearance;
69
+ }
70
+ .grid-7{
71
+ @include span-columns(7);
72
+ @extend %clearance;
73
+ }
74
+ .grid-8{
75
+ @include span-columns(8);
76
+ @extend %clearance;
77
+ }
78
+ .grid-full{
79
+ @include outer-container;
80
+ @include span-columns(8);
81
+ @include omega;
82
+ @extend %clearance;
83
+ float:none;
84
+ clear:both;
85
+ }
86
+ %clearance{
87
+ margin-bottom:$base-margin;
88
+ }
89
+ %no-clearance{
90
+ margin-bottom:0;
91
+ }
92
+ %padding-all{
93
+ padding:$base-padding;
94
+ }
95
+ %margin-all{
96
+ margin:$base-margin;
97
+ }
98
+ .no-clearance{
99
+ @extend %no-clearance;
100
+ padding-bottom:0;
101
+ }
102
+ .omega{
103
+ /*last col*/
104
+ @include omega;
105
+ }
106
+ .alpha{
107
+ /*first col*/
108
+ clear:both;
109
+ zoom:1;
110
+ }
111
+ .align-left { text-align: left; }
112
+ .align-right { text-align: right; }
113
+ .left{
114
+ float: left;
115
+ }
116
+ .right{
117
+ float: right;
118
+ }
119
+ .center {
120
+ text-align: center;
121
+ }
122
+ .inline{
123
+ display:inline-block;
124
+ }
125
+ .row{
126
+ padding:$base-padding/2 0;
127
+ }
128
+ .divide{
129
+ border-bottom:1px solid #ddd;
130
+ }
131
+ .vertical-middle {
132
+ vertical-align: middle;
133
+ }
@@ -0,0 +1,116 @@
1
+ .dropdown.hide{
2
+ display:none;
3
+ opacity:0;
4
+ @include media($mobile){
5
+ display:block;
6
+ opacity:1;
7
+ }
8
+ }
9
+ .dropdown.show{
10
+ display:block;
11
+ min-width:300px;
12
+ height:auto;
13
+ @include media($mobile){
14
+ width:100%;
15
+ box-shadow:1px 1px 1px darken($color-primary, 3);
16
+ }
17
+ }
18
+ .dropdown {
19
+ position: absolute;
20
+ z-index: 9999999;
21
+ padding:$base-padding/2;
22
+ @extend %boxRadius-big;
23
+ right:0;
24
+ top:0;
25
+ width:100%;
26
+ opacity:0;
27
+ a{
28
+ color:$color-white;
29
+ }
30
+ li{
31
+ font-size:.96em;
32
+ margin-bottom:$base-margin/4;
33
+ &:hover{
34
+ a{color:lighten($color-primary,70);}
35
+ }
36
+ }
37
+ label{
38
+ margin:0;
39
+ color:$color-white;
40
+ display:inline-block;
41
+ }
42
+ input{
43
+ border:0;
44
+ }
45
+ @include media($mobile){
46
+ position:static;
47
+ }
48
+ }
49
+ .dropdown-container{
50
+ position:relative;
51
+ & > a{
52
+ text-decoration:none;
53
+ font-weight:bold;
54
+ }
55
+ }
56
+ .dropdown-link{
57
+ display:block;
58
+ padding-right:$base-padding*1.5;
59
+ text-decoration:underline;
60
+ }
61
+ .dropdown-link .caret{
62
+ right: $base-margin * .4;
63
+ top: $base-margin;
64
+ }
65
+
66
+ .pointer-up{
67
+ width: 0;
68
+ height: 0;
69
+ border-left: 6px solid transparent;
70
+ border-right: 6px solid transparent;
71
+ border-bottom: 6px solid $color-dark;
72
+ position:absolute;
73
+ top:-6px;
74
+ content: "";
75
+ @include media($mobile){
76
+ display:none;
77
+ }
78
+ }
79
+ .pointer-up.right{right:8px;}
80
+ .caret{
81
+ border-bottom:none;
82
+ position: absolute;
83
+ width: 0;
84
+ height: 0;
85
+ vertical-align: top;
86
+ border-top: 6px solid $color-white;
87
+ border-right: 6px solid transparent;
88
+ border-left: 6px solid transparent;
89
+ content: "";
90
+ @include media($mobile){
91
+ display:none;
92
+ }
93
+ }
94
+ .dropdown-link.open .caret{
95
+ border-top:none;
96
+ border-bottom: 6px solid $color-white;
97
+ }
98
+ .dropdown-close{
99
+ font-size:.92em;
100
+ text-decoration:underline;
101
+ cursor:pointer;
102
+ display:inline-block;
103
+ position:absolute;
104
+ top:$base-margin/4;
105
+ right:$base-margin/2;
106
+ @include media($mobile){
107
+ display:none;
108
+ }
109
+ }
110
+ .dropdown-divider{
111
+ padding:10px;
112
+ content:"";
113
+ @include media($mobile){
114
+ display:none;
115
+ }
116
+ }
@@ -0,0 +1,122 @@
1
+ /* menus */
2
+ nav li{
3
+ list-style:none;
4
+ margin:0;
5
+ padding:0;
6
+ }
7
+ nav ul{
8
+ margin-left:0;
9
+ }
10
+ .menu-hybrid{
11
+ margin-bottom:0;
12
+ .menu-profile, .menu-www{
13
+ margin-bottom:0;
14
+ }
15
+ @include clearfix();
16
+ @include media($smalldesk){
17
+ font-size:.9em;
18
+ width:auto;
19
+ }
20
+ @include media($mobile) {
21
+ float:right;
22
+ width:65%;
23
+ }
24
+ }
25
+ .menu-profile{
26
+ margin-right:$base-margin;
27
+ }
28
+ .menu-www{
29
+ margin-top:$base-margin/2;
30
+ li{
31
+ float:left;
32
+ margin-right:$base-margin;
33
+ }
34
+ a{
35
+ color:$color-white;
36
+ text-decoration:none;
37
+ &:hover{
38
+ color:lighten($color-primary,70);
39
+ }
40
+ &.active{
41
+ font-weight:bold;
42
+ }
43
+ }
44
+ @include clearfix();
45
+ }
46
+ .menu-desktop{
47
+ display:block;
48
+ @include media($mobile) {
49
+ display:none;
50
+ }
51
+ }
52
+ .menu-tablet{
53
+ display:none;
54
+ margin-top:1em;
55
+ font-size:1em;
56
+ font-weight:bold;
57
+ li{
58
+ margin-bottom:1em;
59
+ }
60
+ @include media($mobile) {
61
+ display:block;
62
+ }
63
+ }
64
+ .menu-profile-tablet, .menu-www-tablet{
65
+ display:none;
66
+ a{
67
+ color:$color-white;
68
+ }
69
+ }
70
+ .menu-toggle{
71
+ display:none;
72
+ color:#fff;
73
+ @include media($mobile) {
74
+ display:block;
75
+ font-size:2em;
76
+ padding:.5em .5em 0 0;
77
+ }
78
+ }
79
+ .menu-logout{
80
+ @include media($mobile) {
81
+ display:none;
82
+ }
83
+ }
84
+ .menu-pricing{
85
+ text-align:right;
86
+ @include media($mobile) {
87
+ @include span-columns(6);
88
+ width:100%;
89
+ }
90
+ }
91
+ .appmenu{
92
+ padding: 0;
93
+ ul{
94
+ margin-bottom: 0;
95
+ overflow: hidden;
96
+ @extend %boxRadius-big;
97
+ }
98
+ a{
99
+ text-decoration: none;
100
+ color: $color-dark;
101
+ background: darken($color-white,13.5%);
102
+ padding: $base-padding*.75 $base-padding;
103
+ display: block;
104
+ line-height:1.1em;
105
+ span{
106
+ font-weight:normal;
107
+ font-size:0.7em;
108
+ }
109
+ &.active{
110
+ background-color: $color-primary;
111
+ color: $color-white;
112
+ font-weight: bold;
113
+ }
114
+ &:hover{
115
+ background-color: lighten($color-primary,70);
116
+ color: $color-primary;
117
+ }
118
+ }
119
+ @include media($mobile) {
120
+ display: none;
121
+ }
122
+ }
@@ -25,108 +25,27 @@
25
25
  }
26
26
  .widget{
27
27
  @extend .box;
28
- &.outline{
29
- border: $color-border $base-border-thickness solid;
30
- padding:0;
31
- overflow:hidden;
32
- h4{
33
- margin-top:0;
34
- -webkit-border-radius: 0 0 $box-radius-big 0;
35
- -moz-border-radius: 0 0 $box-radius-big 0;
36
- border-radius: 0 0 $box-radius-big 0;
37
- padding:$base-padding/2;
38
- color:$color-white;
39
- background-color:$color-primary;
40
- width:20em;
41
- margin-bottom:0;
42
- }
43
- }
44
- &.filled{
45
- background-color: lighten($color-primary,70);
46
- }
47
- &.centered{
48
- margin:auto;
49
- float:none;
50
- border:$border;
51
- padding:$base-padding;
52
- h1{
53
- font-size:1.4em;
54
- font-size:1.4rem;
55
- }
56
- h2{
57
- font-size:1.2em;
58
- font-size:1.2rem;
59
- }
60
- }
61
- }
62
-
63
- .panel{
64
- @extend .widget;
65
- @extend .grid-full;
66
- @extend .collapse;
67
- position:relative;
68
- border: $border;
69
- padding:$base-padding;
70
- margin: $base-margin auto;
71
- .item{
72
- &:nth-child(2){
73
- background: $color-superlight;
74
- }
75
- }
76
- }
77
-
78
- .login.front{
79
- display:block;
80
- background-color: $color-primary;
81
- color: $color-white;
82
- @extend %boxRadius-big;
83
- @include media($mobile) {
84
- display:none;
85
- background:none;
86
- h4{
87
- display:none;
88
- }
89
- }
90
- }
91
- .users .login.front{
92
- display:block;
93
- @include media($mobile) {
94
- h5{
95
- background:$color-primary;
96
- padding:$base-padding;
97
- @include boxRadius(big);
98
- }
99
- }
100
- }
101
- .login.front label, .login.front a, .login.front p, .login.front.error {
102
- color: $color-white;
103
- @include media($mobile) {
104
- color:$color-primary;
105
- }
106
28
  }
107
- .login.front input[type=text]{
108
- border:none;
109
- }
110
- .login-reveal{
111
- display:none;
112
- @include media($mobile) {
113
- display:inline;
29
+ .widget.outline{
30
+ border: $color-border $base-border-thickness solid;
31
+ padding:0;
32
+ overflow:hidden;
33
+ h4{
34
+ margin-top:0;
35
+ -webkit-border-radius: 0 0 $box-radius-big 0;
36
+ -moz-border-radius: 0 0 $box-radius-big 0;
37
+ border-radius: 0 0 $box-radius-big 0;
38
+ padding:$base-padding/2;
39
+ color:$color-white;
40
+ background-color:$color-primary;
41
+ width:20em;
42
+ margin-bottom:0;
114
43
  }
115
44
  }
116
- .users .login-reveal{
117
- display:none;
118
- }
119
- .resetpw{
120
- display:inline-block;
121
- padding-bottom:$base-padding/2;
122
- }
123
- .login-hybrid .control span{
124
- margin-right: 30px;
125
- display:inline-block;
126
- }
127
- .login-hybrid span.error {
128
- width: 100%;
45
+ .widget.filled{
46
+ background-color: lighten($color-primary,70);
129
47
  }
48
+
130
49
  .logo{
131
50
  margin:0 0 0 $base-margin;
132
51
  img{
@@ -146,13 +65,8 @@
146
65
  }
147
66
  .applogo{
148
67
  @include clearfix();
149
- a{
150
- text-decoration:none;
151
- }
152
- h2{
153
- font-size:1.2em;
154
- margin:$base-margin/2 0;
155
- }
68
+ a{ text-decoration:none;}
69
+ h2{ font-size:1.2em; margin:$base-margin/2 0;}
156
70
  }
157
71
  .waiting{
158
72
  margin:$base-margin 0;
@@ -206,13 +120,13 @@
206
120
  /*errors and messages*/
207
121
  .error { display: block; }
208
122
  .error.inline { display: inline-block; }
209
- .error, .error_notification, .error_notification a { color: lighten($color-red, 14%); }
123
+ .error, .error_notification{ color: lighten($color-red, 14%); }
210
124
  .login.front .error { color: lighten($color-red, 35%); }
211
125
  .button-bar .error { background: none; color: $color-red; }
212
126
  .error.button-bar-last-span.selected { box-shadow: none; }
213
127
 
214
128
  .notice{ display:block; }
215
- .notice, .notice_notification, .notice_notification a { color: $color-green; }
129
+ .notice, .notice_notification { color: $color-green; }
216
130
 
217
131
  .error_notification{ @include notification($color-red); }
218
132
  .notice_notification{ @include notification($color-green); }
@@ -278,7 +192,6 @@ p.notice_notification:before { @include notification-icon('\263B'); }
278
192
 
279
193
  /* UI effects */
280
194
  #nowloading { display: inline; position: relative; left: 40px; }
281
- .spinner { display: inline; top: 15px; left: 15px; }
282
195
 
283
196
  /* CAA Dollars History */
284
197
  .caa-dollars-table { width: 100%; }
@@ -330,10 +243,16 @@ p.notice_notification:before { @include notification-icon('\263B'); }
330
243
  position:relative;
331
244
  }
332
245
  .card-front{
333
- background:url(asset-path("membership-cards/front.png")) no-repeat;
246
+ background:url(image-path("membership-cards/temporary/front.png")) no-repeat;
334
247
  }
335
248
  .card-back{
336
- background:url(asset-path("membership-cards/back.png")) no-repeat;
249
+ background:url(image-path("membership-cards/temporary/back.png")) no-repeat;
250
+ }
251
+ .premier-card-front{
252
+ background:url(image-path("membership-cards/temporary/premier-front.png")) no-repeat;
253
+ }
254
+ .premier-card-back{
255
+ background:url(image-path("membership-cards/temporary/premier-back.png")) no-repeat;
337
256
  }
338
257
  .card-hd{
339
258
  font-size:8px;
@@ -378,51 +297,10 @@ p.notice_notification:before { @include notification-icon('\263B'); }
378
297
 
379
298
  /* Member info */
380
299
  ul.member-info {
300
+ margin-left:0;
381
301
  li {
382
302
  list-style:none;
383
303
  margin:0;
384
- }
385
- &.right{
386
- text-align:right;
387
- }
388
- }
389
-
390
- .reward_dollars, .ebills {
391
- margin: 7px;
392
- }
393
- /*Member info card in gatekeeper*/
394
- .card{
395
- @include boxRadius(small);
396
- width:30%;
397
- border:$border;
398
- margin:0 auto $base-margin*1.5;
399
- padding-top:$base-padding/2;
400
- box-shadow: $box-shadow;
401
- li{
402
304
  padding:0;
403
305
  }
404
- .action-footer{
405
- background-color: $color-superlight;
406
- border-top: $border;
407
- margin-top:$base-margin/2;
408
- a{
409
- padding: $base-padding/2 $base-padding;
410
- display: inline-block;
411
- &:first-child{
412
- border-right: $border;
413
- }
414
- }
415
- }
416
- }
417
- .app-logged-in {
418
- font-size: .75em;
419
- line-height: 0;
420
306
  }
421
-
422
- .link-back{
423
- @extend .align-right;
424
- }
425
-
426
- .actions-top{
427
- @extend .align-right;
428
- }
@@ -1,3 +1,3 @@
1
1
  module AmaCss
2
- VERSION = "0.0.4"
2
+ VERSION = "0.0.5"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ama_css
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darko Dosenovic
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2014-09-10 00:00:00.000000000 Z
17
+ date: 2014-12-16 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: bundler
@@ -88,6 +88,7 @@ extra_rdoc_files: []
88
88
  files:
89
89
  - ".gitignore"
90
90
  - ".ruby-version"
91
+ - CHANGELOG.md
91
92
  - Gemfile
92
93
  - LICENSE.txt
93
94
  - README.md
@@ -106,11 +107,20 @@ files:
106
107
  - app/assets/images/foundation/lightbulb_off.png
107
108
  - app/assets/images/foundation/lock.png
108
109
  - app/assets/images/membership-cards/back.png
110
+ - app/assets/images/membership-cards/basic.gif
109
111
  - app/assets/images/membership-cards/front.png
112
+ - app/assets/images/membership-cards/plus.gif
113
+ - app/assets/images/membership-cards/plusrv.gif
114
+ - app/assets/images/membership-cards/temporary/back.png
115
+ - app/assets/images/membership-cards/temporary/front.png
116
+ - app/assets/images/membership-cards/temporary/premier-back.png
117
+ - app/assets/images/membership-cards/temporary/premier-front.png
110
118
  - app/assets/javascripts/foundation/index.js
111
119
  - app/assets/stylesheets/foundation/_grid.settings.scss
120
+ - app/assets/stylesheets/foundation/_grid_mobile.settings.scss
112
121
  - app/assets/stylesheets/foundation/_variables.scss
113
- - app/assets/stylesheets/foundation/application.css.scss
122
+ - app/assets/stylesheets/foundation/application.mobile.scss
123
+ - app/assets/stylesheets/foundation/application.scss
114
124
  - app/assets/stylesheets/foundation/base/_elements.scss
115
125
  - app/assets/stylesheets/foundation/base/_icons-block.scss
116
126
  - app/assets/stylesheets/foundation/base/_icons-line.scss
@@ -118,12 +128,16 @@ files:
118
128
  - app/assets/stylesheets/foundation/base/_normalize.scss
119
129
  - app/assets/stylesheets/foundation/index.css
120
130
  - app/assets/stylesheets/foundation/layout/components.scss
131
+ - app/assets/stylesheets/foundation/layout/layout.mobile.scss
121
132
  - app/assets/stylesheets/foundation/layout/layout.scss
133
+ - app/assets/stylesheets/foundation/modules/dropdown.scss
122
134
  - app/assets/stylesheets/foundation/modules/forms.scss
123
135
  - app/assets/stylesheets/foundation/modules/login.scss
136
+ - app/assets/stylesheets/foundation/modules/menus.scss
124
137
  - app/assets/stylesheets/foundation/modules/module.mobile.scss
125
138
  - app/assets/stylesheets/foundation/modules/module.scss
126
- - app/assets/stylesheets/foundation/oauths.css.scss
139
+ - app/assets/stylesheets/foundation/modules/tab-bar.scss
140
+ - app/assets/stylesheets/foundation/oauths.scss
127
141
  - app/assets/stylesheets/foundation/theme/theme.scss
128
142
  - lib/ama_css.rb
129
143
  - lib/ama_css/version.rb
@@ -147,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
147
161
  version: '0'
148
162
  requirements: []
149
163
  rubyforge_project:
150
- rubygems_version: 2.4.1
164
+ rubygems_version: 2.2.0
151
165
  signing_key:
152
166
  specification_version: 4
153
167
  summary: "[\"CSS used by AMA apps\"]"