solidus_frontend 3.4.0.dev → 4.0.0.dev
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/.circleci/config.yml +4 -19
- data/CHANGELOG.md +2 -0
- data/lib/spree/frontend/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e44b1fc677f1a5395be411196cf20483f8d6c96e18251f78376046c102d9ca7a
|
|
4
|
+
data.tar.gz: 0cbb98a3a5864aefecbaa0fa140a21f58ab92e730b52ecf18b03ca3848a64435
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ea2f67025d772768902918cd58a6ad6f7fdee7f2b86e8715914f1d9ad6d57e2e446b1c6240247230baf2a6effdf6a93c0faafaa05766ed5fc8a8f6a40d55d665
|
|
7
|
+
data.tar.gz: ac9c5b3c28cc76a64c13769fabe5a22c4d111aef5caedbbf903b32637e010b4891c94724ffdd91b58d98338c3bdc9bc1e93a16f3ff51d3208e4bac83bdad0caa
|
data/.circleci/config.yml
CHANGED
|
@@ -2,7 +2,6 @@ version: 2.1
|
|
|
2
2
|
|
|
3
3
|
orbs:
|
|
4
4
|
browser-tools: circleci/browser-tools@1.3
|
|
5
|
-
slack: circleci/slack@4.9.3
|
|
6
5
|
|
|
7
6
|
# Always take the latest version of the orb, this allows us to
|
|
8
7
|
# run specs against Solidus supported versions only without the need
|
|
@@ -19,13 +18,6 @@ commands:
|
|
|
19
18
|
sudo apt-get update
|
|
20
19
|
sudo apt-get install -yq libvips-dev
|
|
21
20
|
|
|
22
|
-
notify:
|
|
23
|
-
steps:
|
|
24
|
-
- slack/notify:
|
|
25
|
-
event: fail
|
|
26
|
-
template: basic_fail_1
|
|
27
|
-
branch_pattern: master, v[0-9]+\.[0-9]+
|
|
28
|
-
|
|
29
21
|
jobs:
|
|
30
22
|
run-specs-with-postgres:
|
|
31
23
|
executor: solidusio_extensions/postgres
|
|
@@ -36,7 +28,6 @@ jobs:
|
|
|
36
28
|
- libvips
|
|
37
29
|
- solidusio_extensions/run-tests-solidus-master
|
|
38
30
|
- solidusio_extensions/store-test-results
|
|
39
|
-
- notify
|
|
40
31
|
run-specs-with-mysql:
|
|
41
32
|
executor: solidusio_extensions/mysql
|
|
42
33
|
steps:
|
|
@@ -46,20 +37,16 @@ jobs:
|
|
|
46
37
|
- libvips
|
|
47
38
|
- solidusio_extensions/run-tests-solidus-master
|
|
48
39
|
- solidusio_extensions/store-test-results
|
|
49
|
-
- notify
|
|
50
40
|
lint-code:
|
|
51
41
|
executor: solidusio_extensions/sqlite-memory
|
|
52
42
|
steps:
|
|
53
43
|
- solidusio_extensions/lint-code
|
|
54
|
-
- notify
|
|
55
44
|
|
|
56
45
|
workflows:
|
|
57
46
|
"Run specs on supported Solidus versions":
|
|
58
47
|
jobs:
|
|
59
|
-
- run-specs-with-postgres
|
|
60
|
-
|
|
61
|
-
- run-specs-with-mysql:
|
|
62
|
-
context: slack-secrets
|
|
48
|
+
- run-specs-with-postgres
|
|
49
|
+
- run-specs-with-mysql
|
|
63
50
|
|
|
64
51
|
"Weekly run specs against master":
|
|
65
52
|
triggers:
|
|
@@ -70,7 +57,5 @@ workflows:
|
|
|
70
57
|
only:
|
|
71
58
|
- master
|
|
72
59
|
jobs:
|
|
73
|
-
- run-specs-with-postgres
|
|
74
|
-
|
|
75
|
-
- run-specs-with-mysql:
|
|
76
|
-
context: slack-secrets
|
|
60
|
+
- run-specs-with-postgres
|
|
61
|
+
- run-specs-with-mysql
|
data/CHANGELOG.md
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus_frontend
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 4.0.0.dev
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Solidus Team
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: solidus_api
|
|
@@ -374,7 +374,7 @@ metadata:
|
|
|
374
374
|
homepage_uri: http://solidus.io
|
|
375
375
|
source_code_uri: https://github.com/solidusio/solidus_frontend
|
|
376
376
|
changelog_uri: https://github.com/solidusio/solidus_frontend/blob/master/CHANGELOG.md
|
|
377
|
-
post_install_message:
|
|
377
|
+
post_install_message:
|
|
378
378
|
rdoc_options: []
|
|
379
379
|
require_paths:
|
|
380
380
|
- lib
|
|
@@ -389,8 +389,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
389
389
|
- !ruby/object:Gem::Version
|
|
390
390
|
version: 1.8.23
|
|
391
391
|
requirements: []
|
|
392
|
-
rubygems_version: 3.
|
|
393
|
-
signing_key:
|
|
392
|
+
rubygems_version: 3.4.6
|
|
393
|
+
signing_key:
|
|
394
394
|
specification_version: 4
|
|
395
395
|
summary: Legacy cart and storefront for the Solidus e-commerce project. For new Solidus
|
|
396
396
|
apps, we recommend that you use [SolidusStarterFrontend](https://github.com/solidusio/solidus_starter_frontend)
|