page_structured_data 1.0.6 → 1.0.7

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: 3158329319534cff0f6011223d8ae6d16f6979742ded26e443633f45f2a9aaaf
4
- data.tar.gz: 9dc54a0d21f0e8567b1957e69fc86220771c4e0eeee04bdcb21238fb56c579b0
3
+ metadata.gz: 9000350b01cd984cc3a81aba170b9afcf7a53793f750b7f532185832faba199e
4
+ data.tar.gz: 9bdfb9ebba8878118a646825c0e06f8050846a00786b54aff20c1f03f96f02dd
5
5
  SHA512:
6
- metadata.gz: 6f7dd3da1c510fea597608fc15473d9f79970f827de8a53576ae9574a3bd0f6aef8c6e015b03406aa0b7d48ac1c9fc65f1de6288fe520e8a673fc2bc357cf1f8
7
- data.tar.gz: bfaa6dc28249dcf07cebeb8c8faf4c42af521f181030fd2712c0520abf922092eda33c0cccd598c8a00bd15485bee9247d321d9f10855768ecc8d8bcc4d7325f
6
+ metadata.gz: 9255931886ad66d7f2ee9769d31dfffd9dbe31f67ccece76292631be37c4596163d037591e5a6b0b4313474a435fcf2987c199aec2977590ac291556ff4cb4b3
7
+ data.tar.gz: c3e348bf9504483ab32a9819b2ab1f5b9d93a5e5e24305199171d9e29477ce56242cec8c3b31cf82a404403805c2d2f63d94025b9b8aacee5064a3b5453f748c
data/CHANGELOG.md CHANGED
@@ -4,6 +4,10 @@ All notable changes to this project are documented here.
4
4
 
5
5
  ## Unreleased
6
6
 
7
+ ## 1.0.7 - 2026-05-06
8
+
9
+ - Remove unused generated Rails engine boilerplate files.
10
+
7
11
  ## 1.0.6 - 2026-05-06
8
12
 
9
13
  - Add tests for HTML escaping in rendered meta tags.
@@ -1,3 +1,3 @@
1
1
  module PageStructuredData
2
- VERSION = "1.0.6"
2
+ VERSION = "1.0.7"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: page_structured_data
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jey Geethan
@@ -43,20 +43,12 @@ files:
43
43
  - MIT-LICENSE
44
44
  - README.md
45
45
  - Rakefile
46
- - app/assets/config/page_structured_data_manifest.js
47
- - app/assets/stylesheets/page_structured_data/application.css
48
- - app/controllers/page_structured_data/application_controller.rb
49
- - app/helpers/page_structured_data/application_helper.rb
50
- - app/jobs/page_structured_data/application_job.rb
51
- - app/mailers/page_structured_data/application_mailer.rb
52
- - app/models/page_structured_data/application_record.rb
53
46
  - app/src/page_structured_data/anchors.rb
54
47
  - app/src/page_structured_data/breadcrumbs.rb
55
48
  - app/src/page_structured_data/page.rb
56
49
  - app/src/page_structured_data/page_types/article.rb
57
50
  - app/src/page_structured_data/page_types/blog_posting.rb
58
51
  - app/src/page_structured_data/page_types/news_article.rb
59
- - app/views/layouts/page_structured_data/application.html.erb
60
52
  - app/views/page_structured_data/_meta_tags.html.erb
61
53
  - config/routes.rb
62
54
  - lib/page_structured_data.rb
@@ -1 +0,0 @@
1
- //= link_directory ../stylesheets/page_structured_data .css
@@ -1,15 +0,0 @@
1
- /*
2
- * This is a manifest file that'll be compiled into application.css, which will include all the files
3
- * listed below.
4
- *
5
- * Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
6
- * or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
7
- *
8
- * You're free to add application-wide styles to this file and they'll appear at the bottom of the
9
- * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
10
- * files in this directory. Styles in this file should be added after the last require_* statement.
11
- * It is generally better to create a new file per style scope.
12
- *
13
- *= require_tree .
14
- *= require_self
15
- */
@@ -1,4 +0,0 @@
1
- module PageStructuredData
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module PageStructuredData
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module PageStructuredData
2
- class ApplicationJob < ActiveJob::Base
3
- end
4
- end
@@ -1,6 +0,0 @@
1
- module PageStructuredData
2
- class ApplicationMailer < ActionMailer::Base
3
- default from: "from@example.com"
4
- layout "mailer"
5
- end
6
- end
@@ -1,5 +0,0 @@
1
- module PageStructuredData
2
- class ApplicationRecord < ActiveRecord::Base
3
- self.abstract_class = true
4
- end
5
- end
@@ -1,15 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>Page structured data</title>
5
- <%= csrf_meta_tags %>
6
- <%= csp_meta_tag %>
7
-
8
- <%= stylesheet_link_tag "page_structured_data/application", media: "all" %>
9
- </head>
10
- <body>
11
-
12
- <%= yield %>
13
-
14
- </body>
15
- </html>