jekyll-theme-midnight-mountains 0.1.1 → 0.1.2
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5afe22162f76f8ba7e3d61ca61c5bf50994e1b05f6c7e8e7a966275cb3dae251
|
|
4
|
+
data.tar.gz: 260adf6b0724e807a2dfb213a152db008bdd54e963dccc7a9ce6768e42743e6e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5ba5d66ed149b5be138733fc5fba5e89bbdcf274a22d7b7f0cdd51e74b1b8c3ca6e8b700f3337fc27dea8d8498067c1929d718753bd9f5c9339d5cdf04a857ad
|
|
7
|
+
data.tar.gz: 445aaf310d139d24dbbec0530282daff4f3382f192e598a0017af991edae49a1a3aca4c03c029afad6fed92692065c6a33652ed08dbc8d98ba48ab22b14a8774
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.1.2] - 2026-05-29
|
|
4
|
+
|
|
5
|
+
- Remove editor backup files (`*~`) that were still tracked under `example/` despite `.gitignore`.
|
|
6
|
+
- Add the missing demo images `ridge.svg` and `skyline.svg` referenced by two example posts (the demo's featured/card backgrounds no longer 404).
|
|
7
|
+
- Drop the unused `Jekyll::Theme::Midnight::Mountains` scaffolding namespace (`lib/jekyll/...`, `sig/jekyll/...`); the gem uses `JekyllThemeMidnightMountains`.
|
|
8
|
+
|
|
3
9
|
## [0.1.1] - 2026-05-29
|
|
4
10
|
|
|
5
11
|
- Remove stray editor backup/temp files committed under `_layouts/` (`home.html~` was being packaged into the published gem; `# *Minibuf-1*#` was repo cruft).
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-midnight-mountains
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Palak Mathur
|
|
@@ -141,8 +141,6 @@ files:
|
|
|
141
141
|
- assets/css/midnight-mountains.scss
|
|
142
142
|
- lib/jekyll-theme-midnight-mountains.rb
|
|
143
143
|
- lib/jekyll-theme-midnight-mountains/version.rb
|
|
144
|
-
- lib/jekyll/theme/midnight/mountains.rb
|
|
145
|
-
- lib/jekyll/theme/midnight/mountains/version.rb
|
|
146
144
|
homepage: https://github.com/systemhalted/jekyll-theme-midnight-mountains
|
|
147
145
|
licenses:
|
|
148
146
|
- MIT
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require "jekyll-theme-midnight-mountains/version"
|
|
4
|
-
|
|
5
|
-
if defined?(Jekyll) && defined?(Jekyll::Theme) && Jekyll::Theme.is_a?(Class)
|
|
6
|
-
module Jekyll
|
|
7
|
-
class Theme
|
|
8
|
-
module Midnight
|
|
9
|
-
module Mountains
|
|
10
|
-
VERSION = JekyllThemeMidnightMountains::VERSION
|
|
11
|
-
end
|
|
12
|
-
end
|
|
13
|
-
end
|
|
14
|
-
end
|
|
15
|
-
end
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
# frozen_string_literal: true
|
|
2
|
-
|
|
3
|
-
require "jekyll-theme-midnight-mountains/version"
|
|
4
|
-
|
|
5
|
-
module JekyllThemeMidnightMountains
|
|
6
|
-
class Error < StandardError; end
|
|
7
|
-
end
|
|
8
|
-
|
|
9
|
-
if defined?(Jekyll) && defined?(Jekyll::Theme) && Jekyll::Theme.is_a?(Class)
|
|
10
|
-
module Jekyll
|
|
11
|
-
class Theme
|
|
12
|
-
module Midnight
|
|
13
|
-
module Mountains
|
|
14
|
-
Error = JekyllThemeMidnightMountains::Error
|
|
15
|
-
VERSION = JekyllThemeMidnightMountains::VERSION
|
|
16
|
-
end
|
|
17
|
-
end
|
|
18
|
-
end
|
|
19
|
-
end
|
|
20
|
-
end
|