jekyll-theme-bas-style-kit 0.2.0 → 0.2.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 +4 -4
- data/CHANGELOG.md +14 -0
- data/README.md +5 -4
- data/_data/bsk_jekyll_vars.json +1 -1
- data/_includes/snippets/body-js.html +0 -2
- data/assets/js/page-js-test.js +1 -0
- data/screenshot.png +0 -0
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bd393bc036c961724e631611903a5c48782fe4e6
|
|
4
|
+
data.tar.gz: cf5895144a6f24ecd68d48d609962478b712de96
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 401a1f8721aad2bfe03bd633b2d403846afa2df07174b01cc67aa0dc0bdec3cac22c703f95c07d16783a3b7a11086aa4feeb5da86fadd7abbe4cae6e839acbd9
|
|
7
|
+
data.tar.gz: 31c0140946971f1d1519e2a3d072536efb63662c7ceb6ecaf487945cb1ac174c5f198f7c48a8630f4becef11111232d99722f8aa8876f65ed29f5c05942cf1a2
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html
|
|
|
5
5
|
|
|
6
6
|
## [Unreleased][unreleased]
|
|
7
7
|
|
|
8
|
+
## 0.2.1 - 21/03/2017
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
* Test page for loading per-page JavaScript files
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
* Removing if statement for `body_js_files` front-matter option, which was checking the wrong value and is redundant
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
* Updating release procedures to update theme screen-shot
|
|
21
|
+
|
|
8
22
|
## 0.2.0 - 20/03/2017
|
|
9
23
|
|
|
10
24
|
### Added
|
data/README.md
CHANGED
|
@@ -703,10 +703,11 @@ listed it won't be included. This is separate to the Git `.gitignore` file.
|
|
|
703
703
|
1. bump version in `jekyll-theme-bas-style-kit.gemspec` and `docker-compose.yml` and `_data/bsk_jekyll_vars.json`
|
|
704
704
|
2. `docker-compose build`
|
|
705
705
|
3. `docker-compose push`
|
|
706
|
-
4.
|
|
707
|
-
5.
|
|
708
|
-
6.
|
|
709
|
-
7. `docker-compose run app gem
|
|
706
|
+
4. update screen-shot (width: 900px)
|
|
707
|
+
5. close release
|
|
708
|
+
6. commit changes to git and tag with new version
|
|
709
|
+
7. `docker-compose run app gem build jekyll-theme-bas-style-kit.gemspec`
|
|
710
|
+
8. `docker-compose run app gem push jekyll-theme-bas-style-kit-*.gem`
|
|
710
711
|
|
|
711
712
|
## Issue tracking
|
|
712
713
|
|
data/_data/bsk_jekyll_vars.json
CHANGED
|
@@ -5,10 +5,8 @@
|
|
|
5
5
|
{% if script.type == 'local' %}<script src="{{ script.href | prepend: site.baseurl }}"></script>{% endif %}
|
|
6
6
|
{% endfor %}
|
|
7
7
|
{% comment %}Additional JS files listed on per-page basis{% endcomment %}
|
|
8
|
-
{% if body_js_files %}
|
|
9
8
|
{% for script in page.body_js_files %}
|
|
10
9
|
<!-- {{ script.comment }} -->
|
|
11
10
|
{% if script.type == 'remote' %}<script src="{{ script.href }}"></script>{% endif %}
|
|
12
11
|
{% if script.type == 'local' %}<script src="{{ script.href | prepend: site.baseurl }}"></script>{% endif %}
|
|
13
12
|
{% endfor %}
|
|
14
|
-
{% endif %}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log('Hello');
|
data/screenshot.png
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-bas-style-kit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Fennell
|
|
@@ -82,6 +82,7 @@ files:
|
|
|
82
82
|
- assets/bsk-jekyll/img/apple-touch-icon.png
|
|
83
83
|
- assets/bsk-jekyll/js/cookie-banner.js
|
|
84
84
|
- assets/css/main.scss
|
|
85
|
+
- assets/js/page-js-test.js
|
|
85
86
|
- screenshot.png
|
|
86
87
|
homepage: https://gitlab.data.bas.ac.uk/BSK/bas-style-kit-jekyll-theme
|
|
87
88
|
licenses:
|