solidus_seo 1.0.1 → 1.0.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 +4 -4
- data/README.md +3 -3
- data/app/models/spree/store_decorator.rb +1 -1
- data/lib/solidus_seo/jsonld/builder/data_methods.rb +1 -1
- data/lib/solidus_seo/version.rb +1 -1
- data/spec/features/homepage_spec.rb +2 -2
- data/spec/features/product_page_spec.rb +2 -2
- data/spec/features/taxon_page_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2ed047bb60c0ad1b64c7c1823ca96cd485f88a5
|
|
4
|
+
data.tar.gz: a0a767ea9d5072c2d469a5ac20bf914f2b6acbf0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 389195c4f82a45f69297f370c9578e741be82c61b00f9de0d2e22a1185260bfa4355574c270cf48788d474b162b358d5074a6b9a728cd13f5f5628a70682409f
|
|
7
|
+
data.tar.gz: 8d5a5af86124d941881747451af2453a30635951f697479a96090ec687cd1496b27c76785ed1ab7d567adbae1acb9d308289d905fcac01f452d3ff100b69c8b3
|
data/README.md
CHANGED
|
@@ -73,7 +73,7 @@ Practically speaking, what this means is that simply by setting your store's met
|
|
|
73
73
|
```json
|
|
74
74
|
{
|
|
75
75
|
"@context": "http://schema.org",
|
|
76
|
-
"@type": "
|
|
76
|
+
"@type": "Store",
|
|
77
77
|
"name": "Your Store Name",
|
|
78
78
|
"logo": "https://yourstore.com/store_logo.jpg",
|
|
79
79
|
"image": "https://yourstore.com/store_logo.jpg",
|
|
@@ -167,7 +167,7 @@ Again, even without any additional work beyond the initial installation, you get
|
|
|
167
167
|
```json
|
|
168
168
|
{
|
|
169
169
|
"@context": "http://schema.org",
|
|
170
|
-
"@type": "
|
|
170
|
+
"@type": "Store",
|
|
171
171
|
"name": "Your Store Name",
|
|
172
172
|
"logo": "https://yourstore.com/store_logo.jpg",
|
|
173
173
|
"image": "https://yourstore.com/store_logo.jpg",
|
|
@@ -275,7 +275,7 @@ Using the sample data above, the final output would look like this :
|
|
|
275
275
|
```json
|
|
276
276
|
{
|
|
277
277
|
"@context": "http://schema.org",
|
|
278
|
-
"@type": "
|
|
278
|
+
"@type": "Store",
|
|
279
279
|
"name": "Your Store Name",
|
|
280
280
|
"logo": "https://yourstore.com/store_logo.jpg",
|
|
281
281
|
"image": "https://yourstore.com/store_logo.jpg",
|
data/lib/solidus_seo/version.rb
CHANGED
|
@@ -18,9 +18,9 @@ describe "Homepage", type: :feature do
|
|
|
18
18
|
|
|
19
19
|
|
|
20
20
|
context 'jsonld markup output' do
|
|
21
|
-
it "contains
|
|
21
|
+
it "contains 'Store' entity type" do
|
|
22
22
|
subject
|
|
23
|
-
expect(page).to have_text :all, %{"@type": "
|
|
23
|
+
expect(page).to have_text :all, %{"@type": "Store"}
|
|
24
24
|
end
|
|
25
25
|
|
|
26
26
|
it "contains store name" do
|
|
@@ -27,9 +27,9 @@ describe "Product page", type: :feature do
|
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
context 'jsonld markup output' do
|
|
30
|
-
it "contains
|
|
30
|
+
it "contains 'Store' entity type" do
|
|
31
31
|
subject
|
|
32
|
-
expect(page).to have_text :all, %{"@type": "
|
|
32
|
+
expect(page).to have_text :all, %{"@type": "Store"}
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
it "contains product" do
|
|
@@ -22,9 +22,9 @@ describe "Taxon page", type: :feature do
|
|
|
22
22
|
|
|
23
23
|
|
|
24
24
|
context 'jsonld markup output' do
|
|
25
|
-
it "contains
|
|
25
|
+
it "contains 'Store' entity type" do
|
|
26
26
|
subject
|
|
27
|
-
expect(page).to have_text :all, %{"@type": "
|
|
27
|
+
expect(page).to have_text :all, %{"@type": "Store"}
|
|
28
28
|
end
|
|
29
29
|
|
|
30
30
|
it "contains breadcrumb list" do
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_seo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Karma Creative
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: solidus_core
|