brume 1.1.1 → 1.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,95 +1,95 @@
1
- /* 12 COLUMN : RESPONSIVE GRID SYSTEM
2
- DEVELOPER : DENIS LEBLANC
3
- URL : http://responsive.gs
4
- VERSION : 3.0
5
- LICENSE : GPL & MIT */
6
-
7
-
8
- /* SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
9
- * {
10
- -webkit-box-sizing: border-box;
11
- -moz-box-sizing: border-box;
12
- box-sizing: border-box;
13
- *behavior: url(/scripts/boxsizing.htc);
14
- /* If you need support for IE7 and lower make
15
- sure the boxsizing.htc file is linked properly.
16
- More info here: https://github.com/Schepp/box-sizing-polyfill */
17
- }
18
-
19
-
20
- /* MAIN CONTAINER
21
- Set the width to whatever you want the width of your site to be. */
22
- .container {
23
- max-width: 800px;
24
- margin: 0 auto;
25
- }
26
-
27
-
28
-
29
- /* SELF CLEARING FLOATS - CLEARFIX METHOD */
30
- .container:after,
31
- .row:after,
32
- .col:after,
33
- .clr:after,
34
- .group:after {
35
- content: "";
36
- display: table;
37
- clear: both;
38
- }
39
-
40
- /* DEFAULT ROW STYLES
41
- Set bottom padding according to preference */
42
- .row { padding-bottom: 0em;
43
- }
44
-
45
-
46
- /* DEFAULT COLUMN STYLES */
47
- .col {
48
- display: block;
49
- float: left;
50
- width: 100%;
51
- }
52
-
53
- @media ( min-width : 768px ) {
54
-
55
- .gutters .col {
56
- margin-left: 2%;
57
- }
58
-
59
- .gutters .col:first-child {
60
- margin-left: 0;
61
- }
62
- }
63
-
64
-
65
-
66
-
67
- /* COLUMN WIDTH ON DISPLAYS +768px
68
- You might need to play with media queries here to suite your design. */
69
- @media ( min-width : 768px ) {
70
- .span_1 { width: 8.33333333333%; }
71
- .span_2 { width: 16.6666666667%; }
72
- .span_3 { width: 25%; }
73
- .span_4 { width: 33.3333333333%; }
74
- .span_5 { width: 41.6666666667%; }
75
- .span_6 { width: 50%; }
76
- .span_7 { width: 58.3333333333%; }
77
- .span_8 { width: 66.6666666667%; }
78
- .span_9 { width: 75%; }
79
- .span_10 { width: 83.3333333333%; }
80
- .span_11 { width: 91.6666666667%; }
81
- .span_12 { width: 100%; }
82
-
83
- .gutters .span_1 { width: 6.5%; }
84
- .gutters .span_2 { width: 15.0%; }
85
- .gutters .span_3 { width: 23.5%; }
86
- .gutters .span_4 { width: 32.0%; }
87
- .gutters .span_5 { width: 40.5%; }
88
- .gutters .span_6 { width: 49.0%; }
89
- .gutters .span_7 { width: 57.5%; }
90
- .gutters .span_8 { width: 66.0%; }
91
- .gutters .span_9 { width: 74.5%; }
92
- .gutters .span_10 { width: 83.0%; }
93
- .gutters .span_11 { width: 91.5%; }
94
- .gutters .span_12 { width: 100%; }
1
+ /* 12 COLUMN : RESPONSIVE GRID SYSTEM
2
+ DEVELOPER : DENIS LEBLANC
3
+ URL : http://responsive.gs
4
+ VERSION : 3.0
5
+ LICENSE : GPL & MIT */
6
+
7
+
8
+ /* SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
9
+ * {
10
+ -webkit-box-sizing: border-box;
11
+ -moz-box-sizing: border-box;
12
+ box-sizing: border-box;
13
+ *behavior: url(/scripts/boxsizing.htc);
14
+ /* If you need support for IE7 and lower make
15
+ sure the boxsizing.htc file is linked properly.
16
+ More info here: https://github.com/Schepp/box-sizing-polyfill */
17
+ }
18
+
19
+
20
+ /* MAIN CONTAINER
21
+ Set the width to whatever you want the width of your site to be. */
22
+ .container {
23
+ max-width: 800px;
24
+ margin: 0 auto;
25
+ }
26
+
27
+
28
+
29
+ /* SELF CLEARING FLOATS - CLEARFIX METHOD */
30
+ .container:after,
31
+ .row:after,
32
+ .col:after,
33
+ .clr:after,
34
+ .group:after {
35
+ content: "";
36
+ display: table;
37
+ clear: both;
38
+ }
39
+
40
+ /* DEFAULT ROW STYLES
41
+ Set bottom padding according to preference */
42
+ .row { padding-bottom: 0em;
43
+ }
44
+
45
+
46
+ /* DEFAULT COLUMN STYLES */
47
+ .col {
48
+ display: block;
49
+ float: left;
50
+ width: 100%;
51
+ }
52
+
53
+ @media ( min-width : 768px ) {
54
+
55
+ .gutters .col {
56
+ margin-left: 2%;
57
+ }
58
+
59
+ .gutters .col:first-child {
60
+ margin-left: 0;
61
+ }
62
+ }
63
+
64
+
65
+
66
+
67
+ /* COLUMN WIDTH ON DISPLAYS +768px
68
+ You might need to play with media queries here to suite your design. */
69
+ @media ( min-width : 768px ) {
70
+ .span_1 { width: 8.33333333333%; }
71
+ .span_2 { width: 16.6666666667%; }
72
+ .span_3 { width: 25%; }
73
+ .span_4 { width: 33.3333333333%; }
74
+ .span_5 { width: 41.6666666667%; }
75
+ .span_6 { width: 50%; }
76
+ .span_7 { width: 58.3333333333%; }
77
+ .span_8 { width: 66.6666666667%; }
78
+ .span_9 { width: 75%; }
79
+ .span_10 { width: 83.3333333333%; }
80
+ .span_11 { width: 91.6666666667%; }
81
+ .span_12 { width: 100%; }
82
+
83
+ .gutters .span_1 { width: 6.5%; }
84
+ .gutters .span_2 { width: 15.0%; }
85
+ .gutters .span_3 { width: 23.5%; }
86
+ .gutters .span_4 { width: 32.0%; }
87
+ .gutters .span_5 { width: 40.5%; }
88
+ .gutters .span_6 { width: 49.0%; }
89
+ .gutters .span_7 { width: 57.5%; }
90
+ .gutters .span_8 { width: 66.0%; }
91
+ .gutters .span_9 { width: 74.5%; }
92
+ .gutters .span_10 { width: 83.0%; }
93
+ .gutters .span_11 { width: 91.5%; }
94
+ .gutters .span_12 { width: 100%; }
95
95
  }
@@ -1,68 +1,68 @@
1
- .highlight .c { color: #c2b680; background-color: #272822 } /* Comment */
2
- .highlight .err { color: #dcdccc; background-color: #272822 } /* Error */
3
- .highlight .g { color: #dcdccc; background-color: #272822 } /* Generic */
4
- .highlight .k { color: #ff6651; font-weight: bold } /* Keyword */
5
- .highlight .l { color: #dcdccc; background-color: #272822 } /* Literal */
6
- .highlight .n { color: #dcdccc; background-color: #272822 } /* Name */
7
- .highlight .o { color: #dcdccc; background-color: #272822 } /* Operator */
8
- .highlight .x { color: #dcdccc; background-color: #272822 } /* Other */
9
- .highlight .p { color: #dcdccc; background-color: #272822 } /* Punctuation */
10
- .highlight .cm { color: #c2b680; background-color: #272822 } /* Comment.Multiline */
11
- .highlight .cp { color: #c2aed0; background-color: #272822 } /* Comment.Preproc */
12
- .highlight .c1 { color: #75715e; background-color: #272822 } /* Comment.Single */
13
- .highlight .cs { color: #c2b680; background-color: #272822 } /* Comment.Special */
14
- .highlight .gd { color: #dcdccc; background-color: #8b0000 } /* Generic.Deleted */
15
- .highlight .ge { color: #d4b064; text-decoration: underline; background-color: #272822 } /* Generic.Emph */
16
- .highlight .gr { color: #f07070; background-color: #272822 } /* Generic.Error */
17
- .highlight .gh { color: #f7f7f1; font-weight: bold; background-color: #000000 } /* Generic.Heading */
18
- .highlight .gi { color: #dcdccc; background-color: #008b00 } /* Generic.Inserted */
19
- .highlight .go { color: #9f8f80; font-weight: bold; background-color: #272822 } /* Generic.Output */
20
- .highlight .gp { color: #dcdccc; background-color: #272822 } /* Generic.Prompt */
21
- .highlight .gs { color: #dcdccc; background-color: #272822 } /* Generic.Strong */
22
- .highlight .gu { color: #f7f7f1; font-weight: bold; background-color: #000000 } /* Generic.Subheading */
23
- .highlight .gt { color: #f07070; font-weight: bold; background-color: #272822 } /* Generic.Traceback */
24
- .highlight .kc { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Constant */
25
- .highlight .kd { color: #77d8eb; font-weight: bold; background-color: #272822 } /* Keyword.Declaration */
26
- .highlight .kn { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Namespace */
27
- .highlight .kp { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Pseudo */
28
- .highlight .kr { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Reserved */
29
- .highlight .kt { color: #dabfa5; font-weight: bold; background-color: #272822 } /* Keyword.Type */
30
- .highlight .ld { color: #dcdccc; background-color: #272822 } /* Literal.Date */
31
- .highlight .m { color: #dcdccc; background-color: #272822 } /* Literal.Number */
32
- .highlight .s { color: #e6db6f } /* Literal.String */
33
- .highlight .na { color: #b5df5e; } /* Name.Attribute */
34
- .highlight .nb { color: #dcdccc; } /* Name.Builtin */
35
- .highlight .nc { color: #dcdccc; background-color: #272822 } /* Name.Class */
36
- .highlight .no { color: #afe091; background-color: #272822 } /* Name.Constant */
37
- .highlight .nd { color: #dcdccc; background-color: #272822 } /* Name.Decorator */
38
- .highlight .ni { color: #d4b064; background-color: #272822 } /* Name.Entity */
39
- .highlight .ne { color: #dcdccc; background-color: #272822 } /* Name.Exception */
40
- .highlight .nf { color: #dcdccc; background-color: #272822 } /* Name.Function */
41
- .highlight .nl { color: #dcdccc; background-color: #272822 } /* Name.Label */
42
- .highlight .nn { color: #dcdccc; background-color: #272822 } /* Name.Namespace */
43
- .highlight .nx { color: #ff6651; background-color: #272822 } /* Name.Other */
44
- .highlight .py { color: #dcdccc; background-color: #272822 } /* Name.Property */
45
- .highlight .nt { color: #ff6651; font-weight: bold } /* Name.Tag */
46
- .highlight .nv { color: #ff6651; background-color: #272822 } /* Name.Variable */
47
- .highlight .ow { color: #dcdccc; background-color: #272822 } /* Operator.Word */
48
- .highlight .w { color: #dcdccc; background-color: #272822 } /* Text.Whitespace */
49
- .highlight .mf { color: #c2a4f8; background-color: #272822 } /* Literal.Number.Float */
50
- .highlight .mh { color: #dcdccc; background-color: #272822 } /* Literal.Number.Hex */
51
- .highlight .mi { color: #c2a4f8; background-color: #272822 } /* Literal.Number.Integer */
52
- .highlight .mo { color: #dcdccc; background-color: #272822 } /* Literal.Number.Oct */
53
- .highlight .sb { color: #dcdccc; background-color: #272822 } /* Literal.String.Backtick */
54
- .highlight .sc { color: #dcdccc; background-color: #272822 } /* Literal.String.Char */
55
- .highlight .sd { color: #dcdccc; background-color: #272822 } /* Literal.String.Doc */
56
- .highlight .s2 { color: #e6db6f; background-color: #272822 } /* Literal.String.Double */
57
- .highlight .se { color: #dcdccc; background-color: #272822 } /* Literal.String.Escape */
58
- .highlight .sh { color: #dcdccc; background-color: #272822 } /* Literal.String.Heredoc */
59
- .highlight .si { color: #dcdccc; background-color: #272822 } /* Literal.String.Interpol */
60
- .highlight .sx { color: #dcdccc; background-color: #272822 } /* Literal.String.Other */
61
- .highlight .sr { color: #e6db6f; background-color: #272822 } /* Literal.String.Regex */
62
- .highlight .s1 { color: #dcdccc; background-color: #272822 } /* Literal.String.Single */
63
- .highlight .ss { color: #e6db6f; background-color: #272822 } /* Literal.String.Symbol */
64
- .highlight .bp { color: #dcdccc; background-color: #272822 } /* Name.Builtin.Pseudo */
65
- .highlight .vc { color: #dabfa5; background-color: #272822 } /* Name.Variable.Class */
66
- .highlight .vg { color: #dabfa5; background-color: #272822 } /* Name.Variable.Global */
67
- .highlight .vi { color: #dabfa5; background-color: #272822 } /* Name.Variable.Instance */
68
- .highlight .il { color: #dcdccc; background-color: #272822 } /* Literal.Number.Integer.Long */
1
+ .highlight .c { color: #c2b680; background-color: #272822 } /* Comment */
2
+ .highlight .err { color: #dcdccc; background-color: #272822 } /* Error */
3
+ .highlight .g { color: #dcdccc; background-color: #272822 } /* Generic */
4
+ .highlight .k { color: #ff6651; font-weight: bold } /* Keyword */
5
+ .highlight .l { color: #dcdccc; background-color: #272822 } /* Literal */
6
+ .highlight .n { color: #dcdccc; background-color: #272822 } /* Name */
7
+ .highlight .o { color: #dcdccc; background-color: #272822 } /* Operator */
8
+ .highlight .x { color: #dcdccc; background-color: #272822 } /* Other */
9
+ .highlight .p { color: #dcdccc; background-color: #272822 } /* Punctuation */
10
+ .highlight .cm { color: #c2b680; background-color: #272822 } /* Comment.Multiline */
11
+ .highlight .cp { color: #c2aed0; background-color: #272822 } /* Comment.Preproc */
12
+ .highlight .c1 { color: #75715e; background-color: #272822 } /* Comment.Single */
13
+ .highlight .cs { color: #c2b680; background-color: #272822 } /* Comment.Special */
14
+ .highlight .gd { color: #dcdccc; background-color: #8b0000 } /* Generic.Deleted */
15
+ .highlight .ge { color: #d4b064; text-decoration: underline; background-color: #272822 } /* Generic.Emph */
16
+ .highlight .gr { color: #f07070; background-color: #272822 } /* Generic.Error */
17
+ .highlight .gh { color: #f7f7f1; font-weight: bold; background-color: #000000 } /* Generic.Heading */
18
+ .highlight .gi { color: #dcdccc; background-color: #008b00 } /* Generic.Inserted */
19
+ .highlight .go { color: #9f8f80; font-weight: bold; background-color: #272822 } /* Generic.Output */
20
+ .highlight .gp { color: #dcdccc; background-color: #272822 } /* Generic.Prompt */
21
+ .highlight .gs { color: #dcdccc; background-color: #272822 } /* Generic.Strong */
22
+ .highlight .gu { color: #f7f7f1; font-weight: bold; background-color: #000000 } /* Generic.Subheading */
23
+ .highlight .gt { color: #f07070; font-weight: bold; background-color: #272822 } /* Generic.Traceback */
24
+ .highlight .kc { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Constant */
25
+ .highlight .kd { color: #77d8eb; font-weight: bold; background-color: #272822 } /* Keyword.Declaration */
26
+ .highlight .kn { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Namespace */
27
+ .highlight .kp { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Pseudo */
28
+ .highlight .kr { color: #e0af91; font-weight: bold; background-color: #272822 } /* Keyword.Reserved */
29
+ .highlight .kt { color: #dabfa5; font-weight: bold; background-color: #272822 } /* Keyword.Type */
30
+ .highlight .ld { color: #dcdccc; background-color: #272822 } /* Literal.Date */
31
+ .highlight .m { color: #dcdccc; background-color: #272822 } /* Literal.Number */
32
+ .highlight .s { color: #e6db6f } /* Literal.String */
33
+ .highlight .na { color: #b5df5e; } /* Name.Attribute */
34
+ .highlight .nb { color: #dcdccc; } /* Name.Builtin */
35
+ .highlight .nc { color: #dcdccc; background-color: #272822 } /* Name.Class */
36
+ .highlight .no { color: #afe091; background-color: #272822 } /* Name.Constant */
37
+ .highlight .nd { color: #dcdccc; background-color: #272822 } /* Name.Decorator */
38
+ .highlight .ni { color: #d4b064; background-color: #272822 } /* Name.Entity */
39
+ .highlight .ne { color: #dcdccc; background-color: #272822 } /* Name.Exception */
40
+ .highlight .nf { color: #dcdccc; background-color: #272822 } /* Name.Function */
41
+ .highlight .nl { color: #dcdccc; background-color: #272822 } /* Name.Label */
42
+ .highlight .nn { color: #dcdccc; background-color: #272822 } /* Name.Namespace */
43
+ .highlight .nx { color: #ff6651; background-color: #272822 } /* Name.Other */
44
+ .highlight .py { color: #dcdccc; background-color: #272822 } /* Name.Property */
45
+ .highlight .nt { color: #ff6651; font-weight: bold } /* Name.Tag */
46
+ .highlight .nv { color: #ff6651; background-color: #272822 } /* Name.Variable */
47
+ .highlight .ow { color: #dcdccc; background-color: #272822 } /* Operator.Word */
48
+ .highlight .w { color: #dcdccc; background-color: #272822 } /* Text.Whitespace */
49
+ .highlight .mf { color: #c2a4f8; background-color: #272822 } /* Literal.Number.Float */
50
+ .highlight .mh { color: #dcdccc; background-color: #272822 } /* Literal.Number.Hex */
51
+ .highlight .mi { color: #c2a4f8; background-color: #272822 } /* Literal.Number.Integer */
52
+ .highlight .mo { color: #dcdccc; background-color: #272822 } /* Literal.Number.Oct */
53
+ .highlight .sb { color: #dcdccc; background-color: #272822 } /* Literal.String.Backtick */
54
+ .highlight .sc { color: #dcdccc; background-color: #272822 } /* Literal.String.Char */
55
+ .highlight .sd { color: #dcdccc; background-color: #272822 } /* Literal.String.Doc */
56
+ .highlight .s2 { color: #e6db6f; background-color: #272822 } /* Literal.String.Double */
57
+ .highlight .se { color: #dcdccc; background-color: #272822 } /* Literal.String.Escape */
58
+ .highlight .sh { color: #dcdccc; background-color: #272822 } /* Literal.String.Heredoc */
59
+ .highlight .si { color: #dcdccc; background-color: #272822 } /* Literal.String.Interpol */
60
+ .highlight .sx { color: #dcdccc; background-color: #272822 } /* Literal.String.Other */
61
+ .highlight .sr { color: #e6db6f; background-color: #272822 } /* Literal.String.Regex */
62
+ .highlight .s1 { color: #dcdccc; background-color: #272822 } /* Literal.String.Single */
63
+ .highlight .ss { color: #e6db6f; background-color: #272822 } /* Literal.String.Symbol */
64
+ .highlight .bp { color: #dcdccc; background-color: #272822 } /* Name.Builtin.Pseudo */
65
+ .highlight .vc { color: #dabfa5; background-color: #272822 } /* Name.Variable.Class */
66
+ .highlight .vg { color: #dabfa5; background-color: #272822 } /* Name.Variable.Global */
67
+ .highlight .vi { color: #dabfa5; background-color: #272822 } /* Name.Variable.Instance */
68
+ .highlight .il { color: #dcdccc; background-color: #272822 } /* Literal.Number.Integer.Long */
@@ -1,4 +1,4 @@
1
- <svg fill="#f5f5f5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M0 0h24v24H0z" fill="none"/>
3
- <path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
1
+ <svg fill="#f5f5f5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M0 0h24v24H0z" fill="none"/>
3
+ <path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
3
- <path d="M0 0h24v24H0z" fill="none"/>
1
+ <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12z"/>
3
+ <path d="M0 0h24v24H0z" fill="none"/>
4
4
  </svg>
@@ -1,4 +1,4 @@
1
- <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
2
- <path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
3
- <path d="M0 0h24v24H0z" fill="none"/>
1
+ <svg fill="#000000" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6z"/>
3
+ <path d="M0 0h24v24H0z" fill="none"/>
4
4
  </svg>
@@ -1,2 +1,2 @@
1
- /*! fluidvids.js v2.4.1 | (c) 2014 @toddmotto | https://github.com/toddmotto/fluidvids */
1
+ /*! fluidvids.js v2.4.1 | (c) 2014 @toddmotto | https://github.com/toddmotto/fluidvids */
2
2
  !function(e,t){"function"==typeof define&&define.amd?define(t):"object"==typeof exports?module.exports=t:e.fluidvids=t()}(this,function(){"use strict";function e(e){return new RegExp("^(https?:)?//(?:"+d.players.join("|")+").*$","i").test(e)}function t(e,t){return parseInt(e,10)/parseInt(t,10)*100+"%"}function i(i){if((e(i.src)||e(i.data))&&!i.getAttribute("data-fluidvids")){var n=document.createElement("div");i.parentNode.insertBefore(n,i),i.className+=(i.className?" ":"")+"fluidvids-item",i.setAttribute("data-fluidvids","loaded"),n.className+="fluidvids",n.style.paddingTop=t(i.height,i.width),n.appendChild(i)}}function n(){var e=document.createElement("div");e.innerHTML="<p>x</p><style>"+o+"</style>",r.appendChild(e.childNodes[1])}var d={selector:["iframe","object"],players:["www.youtube.com","player.vimeo.com"]},o=[".fluidvids {","width: 100%; max-width: 100%; position: relative;","}",".fluidvids-item {","position: absolute; top: 0px; left: 0px; width: 100%; height: 100%;","}"].join(""),r=document.head||document.getElementsByTagName("head")[0];return d.render=function(){for(var e=document.querySelectorAll(d.selector.join()),t=e.length;t--;)i(e[t])},d.init=function(e){for(var t in e)d[t]=e[t];d.render(),n()},d});
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: brume
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.1
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aigars Dzerviniks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-16 00:00:00.000000000 Z
11
+ date: 2019-02-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.12'
33
+ version: '2.0'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.12'
40
+ version: '2.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: rake
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
101
101
  version: '0'
102
102
  requirements: []
103
103
  rubyforge_project:
104
- rubygems_version: 2.6.11
104
+ rubygems_version: 2.7.3
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: It's simple. It's easy to use. It's a Jekyll theme.