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: 51d5abff3af7d712edd3e2cca7ead54d03980cebbd9f913a08aaee210830c493
4
- data.tar.gz: 18172f87c25d1b7c0727bb5480fd65644b47a999fc902042fd7b13df58cea3dc
3
+ metadata.gz: 5afe22162f76f8ba7e3d61ca61c5bf50994e1b05f6c7e8e7a966275cb3dae251
4
+ data.tar.gz: 260adf6b0724e807a2dfb213a152db008bdd54e963dccc7a9ce6768e42743e6e
5
5
  SHA512:
6
- metadata.gz: 7d0642ed4095663c95ed7deaf9a274beec67e5e702152f69761bfa023b1718a7c41aff695d5fbb99d634548bcaf6e6d1bedc3460c16a388e1c8dc1c7dd675a54
7
- data.tar.gz: 7ecfc17c6d27f1951aae19bffeba55438eeb292519cb41868200645b4790c9332c8fe9333d1e9ccf0b4061ccca4e0b925c9b2d5b7d9c416a5489c5ec0870f27a
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).
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module JekyllThemeMidnightMountains
4
- VERSION = "0.1.1"
4
+ VERSION = "0.1.2"
5
5
  end
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.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