page_structured_data 1.0.2 → 1.0.3

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: 8e6e417c38d0a25d8e3270315eb9d98434eb9dbc93e7860667a96e457b94bfa9
4
- data.tar.gz: e3f2b717b5b01cd49c90675fb1a74199b89492c298fa93474ad75772530edf32
3
+ metadata.gz: a7c3d0a5a1b15c977f7fbad8c98b6f65aa60873e4e320b05eeb1ef9ecb103cf2
4
+ data.tar.gz: c9e1370c39548ca404bf508e02da8f80680c7ba9cc43450e541ba688b7fe00f9
5
5
  SHA512:
6
- metadata.gz: 80bc6fed7640148b6f7e23c9ce3aec0bdb719ce8d4e7136a63dba0b0b2d7bc277de96b500e10cca9f5058b0a8fee0b8f81ce6cfc894db984472c99e65401af29
7
- data.tar.gz: 9aefe55598d3e63ab69df53c2fbc95ea6697b46b7d1ce5b19909e8a54b6bb346bc460c858d572bfd2c07cc49c05fe12d6a9e1fb2be026ce58efc01aa0b80f879
6
+ metadata.gz: 9a6762f1fac05f0c3fd7fa3d20f0aa1b815834becdff134a6850496c35789852f3b8b59f23541a537409c81e79f1934d16603edf83e558b4a41ab422de197064
7
+ data.tar.gz: 286d821c75af661708819f6cdd36b47f7e49eb4da42e0743bfa0b80270b851674d693dbc9f1a573d36482077ef7e2ec786ebc6ff5df804d4b622564ecfec3a18
data/CHANGELOG.md ADDED
@@ -0,0 +1,24 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project are documented here.
4
+
5
+ ## Unreleased
6
+
7
+ ## 1.0.3 - 2026-05-06
8
+
9
+ - Improve RubyGems metadata, documentation links, and public README presentation.
10
+
11
+ ## 1.0.2 - 2026-05-06
12
+
13
+ - Fix dummy app compatibility with Rails 7.0 by replacing `config.autoload_lib`.
14
+ - Fix requiring `page_structured_data` before Rails has already been loaded.
15
+ - Add baseline tests for page title composition and JSON-LD output.
16
+ - Improve README documentation for installation, configuration, usage, and compatibility.
17
+
18
+ ## 1.0.1
19
+
20
+ - Previous public release.
21
+
22
+ ## 1.0.0
23
+
24
+ - Initial public release.
data/README.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # PageStructuredData
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/page_structured_data.svg)](https://rubygems.org/gems/page_structured_data)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](MIT-LICENSE)
5
+
3
6
  PageStructuredData is a small Rails engine for rendering page-level SEO and social sharing metadata from one page object.
4
7
 
5
8
  It helps Rails applications render:
@@ -1,3 +1,3 @@
1
1
  module PageStructuredData
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
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.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jey Geethan
@@ -38,15 +38,16 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: 4.1.0
41
- description: This gem helps to create structured meta tags and ld+json schema for
42
- rails applications. It is easy to use and can be incorporated into any existing
43
- rails app.
41
+ description: PageStructuredData gives Rails applications a small page object and view
42
+ partial for rendering page titles, basic meta tags, Open Graph tags, Twitter card
43
+ tags, breadcrumb JSON-LD, and article JSON-LD.
44
44
  email:
45
45
  - opensource@rocketapex.com
46
46
  executables: []
47
47
  extensions: []
48
48
  extra_rdoc_files: []
49
49
  files:
50
+ - CHANGELOG.md
50
51
  - MIT-LICENSE
51
52
  - README.md
52
53
  - Rakefile
@@ -76,7 +77,10 @@ metadata:
76
77
  allowed_push_host: https://rubygems.org
77
78
  homepage_uri: https://github.com/RocketApex/page_structured_data
78
79
  source_code_uri: https://github.com/RocketApex/page_structured_data
79
- changelog_uri: https://github.com/RocketApex/page_structured_data
80
+ documentation_uri: https://github.com/RocketApex/page_structured_data#readme
81
+ bug_tracker_uri: https://github.com/RocketApex/page_structured_data/issues
82
+ changelog_uri: https://github.com/RocketApex/page_structured_data/blob/main/CHANGELOG.md
83
+ rubygems_mfa_required: 'true'
80
84
  post_install_message:
81
85
  rdoc_options: []
82
86
  require_paths:
@@ -95,5 +99,5 @@ requirements: []
95
99
  rubygems_version: 3.3.7
96
100
  signing_key:
97
101
  specification_version: 4
98
- summary: Easily create meta tags with structured data for webpages
102
+ summary: Render SEO, social, and JSON-LD metadata for Rails pages
99
103
  test_files: []