wytch 0.3.0 → 0.5.0

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.
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: wytch
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jared Norman
@@ -131,6 +131,8 @@ files:
131
131
  - lib/wytch/server.rb
132
132
  - lib/wytch/site.rb
133
133
  - lib/wytch/site_code_loader_middleware.rb
134
+ - lib/wytch/sitemap_helper.rb
135
+ - lib/wytch/sitemap_view.rb
134
136
  - lib/wytch/templates/Gemfile.tt
135
137
  - lib/wytch/templates/config.rb.tt
136
138
  - lib/wytch/templates/content/feed.rb.tt
@@ -150,8 +152,6 @@ files:
150
152
  - lib/wytch/templates/src/site/page.rb.tt
151
153
  - lib/wytch/templates/src/site/post_helpers.rb.tt
152
154
  - lib/wytch/templates/src/site/post_view.rb.tt
153
- - lib/wytch/templates/src/site/sitemap_helper.rb.tt
154
- - lib/wytch/templates/src/site/sitemap_view.rb.tt
155
155
  - lib/wytch/templates/vite.config.js.tt
156
156
  - lib/wytch/version.rb
157
157
  - sig/wytch.rbs
@@ -172,8 +172,10 @@ files:
172
172
  - website/content/api/wytch/server.rb
173
173
  - website/content/api/wytch/site.rb
174
174
  - website/content/api/wytch/sitecodeloadermiddleware.rb
175
+ - website/content/api/wytch/sitemapview.rb
175
176
  - website/content/index.rb
176
177
  - website/content/sitemap.rb
178
+ - website/package-lock.json
177
179
  - website/package.json
178
180
  - website/public/robots.txt
179
181
  - website/rescript.json
@@ -1,17 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- module <%= @site_module %>
4
- module SitemapHelper
5
- def path
6
- "/sitemap.xml"
7
- end
8
-
9
- def build_path
10
- "sitemap.xml"
11
- end
12
-
13
- def include_in_sitemap?
14
- false
15
- end
16
- end
17
- end