jekyll-lin 1.0.0 → 1.0.1

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 28782ffbdb04284789d317136ffdaae6d1de5516
4
- data.tar.gz: 49edea2de5511061f9d1f3de1b6d58fbf2be31ee
3
+ metadata.gz: e94b6204387239b51dfd69b49f1a8e0e2adfbdfc
4
+ data.tar.gz: c26f44b5ed6348e00b05bbaf701d93a3173d4e50
5
5
  SHA512:
6
- metadata.gz: fb064b79e84751796f80b81ba3d1918b0b1e27813f58e7da0bc19fe816437e91ac466201b3ef6122db32a12421799e2581c65181fefe83de1cd8b2151d587bea
7
- data.tar.gz: bf43b374212f62deda126ff2ba1e453c07373bdf580a763d7f1dd918f7b5945159e0ad79e4b5c1b0cc1952b10306b0d155e86f49e047f54c5e2a4769c910b107
6
+ metadata.gz: 748ecf4b586eda31110ff665766a4148069d5533be833beadd73bb4d8ca0248fbb6478a163ff1ef1caac4e34f7189b05c4da81466afcabd3810762c2e7840a2e
7
+ data.tar.gz: 0a139e9dd3d27f3185520e4f17112e78b5bc4506072f0aded7794f8c3b3fbccc6a0d8af6a20a08ec71e0003909c8d1b14ba2be83f5b4481b77306fce72125f50
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2016-present Parker Moore and the minima contributors
3
+ Copyright (c) 2019 Jekyll lin contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -171,6 +171,22 @@ To set up your environment to develop this theme, run `script/bootstrap`.
171
171
 
172
172
  To test your theme, run `script/server` (or `bundle exec jekyll serve`) and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme and the contents. As you make modifications, your site will regenerate and you should see the changes in the browser after a refresh.
173
173
 
174
+ ## Publishing
175
+
176
+ Update the version.
177
+
178
+ Build the gem:
179
+
180
+ ```
181
+ gem build jekyll-lin.gemspec
182
+ ```
183
+
184
+ Push the generated file
185
+
186
+ ```
187
+ gem push jekyll-lin-x.y.z.gem
188
+ ```
189
+
174
190
  ## License
175
191
 
176
192
  The theme is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
@@ -1,8 +1,8 @@
1
1
  <div class="row">
2
- <div class="col-md-4 has-space-top has-space-bottom">
2
+ <div class="col-md-6 has-space-top has-space-bottom">
3
3
  {{ site.copyright | escape }}, styled with <a href="https://lin-css.netlify.com/">lin.css</a>
4
4
  </div>
5
- <div class="col-md-8 has-space-top has-space-bottom text-right">
5
+ <div class="col-md-6 has-space-top has-space-bottom text-right">
6
6
  {%- include social.html -%}
7
7
  <div class="spacer"></div>
8
8
  </div>
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-lin
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sergey Sokurenko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-16 00:00:00.000000000 Z
11
+ date: 2019-09-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -79,7 +79,6 @@ executables: []
79
79
  extensions: []
80
80
  extra_rdoc_files: []
81
81
  files:
82
- - LICENSE
83
82
  - LICENSE.txt
84
83
  - README.md
85
84
  - _includes/avatar.html
data/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2019 Sergey Sokurenko
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.