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 +4 -4
- data/CHANGELOG.md +24 -0
- data/README.md +3 -0
- data/lib/page_structured_data/version.rb +1 -1
- metadata +10 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a7c3d0a5a1b15c977f7fbad8c98b6f65aa60873e4e320b05eeb1ef9ecb103cf2
|
|
4
|
+
data.tar.gz: c9e1370c39548ca404bf508e02da8f80680c7ba9cc43450e541ba688b7fe00f9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
+
[](https://rubygems.org/gems/page_structured_data)
|
|
4
|
+
[](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:
|
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.
|
|
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:
|
|
42
|
-
|
|
43
|
-
|
|
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
|
-
|
|
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:
|
|
102
|
+
summary: Render SEO, social, and JSON-LD metadata for Rails pages
|
|
99
103
|
test_files: []
|