solidus 3.1.9 → 3.2.0.alpha
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 +18 -8
- metadata +18 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9cbaf3e56874f291dd810089356e484117c3b954fa89efa234c954ce39645a1d
|
|
4
|
+
data.tar.gz: 1466a0fd0273348790d87fbdc64562f6b4635cdd080295838c39b564b08e69c1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '0817805410cfeb0dde180bc79e288f686d5c912146656f25734785745631abf787256f6202f00f44252bb4658f50e49fa3339b54743c6545668f40382289c918'
|
|
7
|
+
data.tar.gz: 278c259181603f695d2c4ef8f218bf6c6363efd059ad4ae4c992f38d36f7eddfce0c803c935ea43a0e2520f13e7fc472045fed1a0b89829c2ce5b3ed695c3f5a
|
data/README.md
CHANGED
|
@@ -42,12 +42,12 @@ As a community-driven project, Solidus relies on funds and time donated by devel
|
|
|
42
42
|
### Main Contributor & Director
|
|
43
43
|
At present, Nebulab is the main code contributor and director of Solidus, providing technical guidance and coordinating community efforts and activities.
|
|
44
44
|
|
|
45
|
-
[](https://nebulab.com/)
|
|
46
46
|
|
|
47
47
|
### Ambassadors
|
|
48
48
|
Support this project by becoming a Solidus Ambassador. Your logo will show up here with a link to your website. [Become an Ambassador](https://opencollective.com/solidus).
|
|
49
49
|
|
|
50
|
-
[](https://supergood.software/)
|
|
51
51
|
[](https://karmacreative.io/)
|
|
52
52
|
[](https://www.moddedeuros.com)
|
|
53
53
|
|
|
@@ -63,7 +63,7 @@ Guides](https://guides.solidus.io) for information about the functionality that
|
|
|
63
63
|
Solidus provides.
|
|
64
64
|
|
|
65
65
|
Solidus consists of several gems. When you require the `solidus` gem in your
|
|
66
|
-
`Gemfile`, Bundler will install all of the gems
|
|
66
|
+
`Gemfile`, Bundler will install all of the following gems:
|
|
67
67
|
|
|
68
68
|
- [`solidus_api`](https://github.com/solidusio/solidus/tree/master/api) (RESTful API)
|
|
69
69
|
- [`solidus_frontend`](https://github.com/solidusio/solidus/tree/master/frontend) (Cart and storefront)
|
|
@@ -71,6 +71,10 @@ Solidus consists of several gems. When you require the `solidus` gem in your
|
|
|
71
71
|
- [`solidus_core`](https://github.com/solidusio/solidus/tree/master/core) (Essential models, mailers, and classes)
|
|
72
72
|
- [`solidus_sample`](https://github.com/solidusio/solidus/tree/master/sample) (Sample data)
|
|
73
73
|
|
|
74
|
+
While `solidus_frontend` is still present in the meta-gem, it'll be removed in
|
|
75
|
+
Solidus v4.0. For new stores, we recommend using
|
|
76
|
+
[solidus_starter_frontend](https://github.com/solidusio/solidus_starter_frontend).
|
|
77
|
+
|
|
74
78
|
All of the gems are designed to work together to provide a fully functional
|
|
75
79
|
ecommerce platform. However, you may only want to use the
|
|
76
80
|
[`solidus_core`](https://github.com/solidusio/solidus/tree/master/core) gem
|
|
@@ -124,8 +128,9 @@ Start the Rails server with the command:
|
|
|
124
128
|
bin/rails s
|
|
125
129
|
```
|
|
126
130
|
|
|
127
|
-
The
|
|
128
|
-
|
|
131
|
+
The storefront will be accessible at
|
|
132
|
+
[http://localhost:3000/](http://localhost:3000/) and the admin can be found at
|
|
133
|
+
[http://localhost:3000/admin/](http://localhost:3000/admin/).
|
|
129
134
|
|
|
130
135
|
For information on how to customize your store, check out the [customization guides](https://guides.solidus.io/developers/customizations/overview.html).
|
|
131
136
|
|
|
@@ -237,7 +242,7 @@ Wait for all the gems to be installed (progress can be checked through `docker-c
|
|
|
237
242
|
You can provide the ruby version you want your image to use:
|
|
238
243
|
|
|
239
244
|
```bash
|
|
240
|
-
docker-compose build --build-arg RUBY_VERSION=2.
|
|
245
|
+
docker-compose build --build-arg RUBY_VERSION=2.7 app
|
|
241
246
|
docker-compose up -d
|
|
242
247
|
```
|
|
243
248
|
|
|
@@ -307,6 +312,11 @@ data already loaded.
|
|
|
307
312
|
bin/sandbox
|
|
308
313
|
```
|
|
309
314
|
|
|
315
|
+
Depending on your local environment, it may be necessary for you to set environment variables for your RDBMS, namely:
|
|
316
|
+
- `DB_HOST`
|
|
317
|
+
- `DB_USER`
|
|
318
|
+
- `DB_PASSWORD`
|
|
319
|
+
|
|
310
320
|
If you need to create a Rails 5.2 application for your sandbox, for example
|
|
311
321
|
if you are still using Ruby 2.4 which is not supported by Rails 6, you can
|
|
312
322
|
use the `RAILS_VERSION` environment variable.
|
|
@@ -338,8 +348,8 @@ You can see the build statuses at
|
|
|
338
348
|
|
|
339
349
|
#### Run all tests
|
|
340
350
|
|
|
341
|
-
[ChromeDriver](https://
|
|
342
|
-
|
|
351
|
+
[ChromeDriver](https://chromedriver.chromium.org/downloads) is required to run
|
|
352
|
+
the backend test suites.
|
|
343
353
|
|
|
344
354
|
To execute all of the test specs, run the `bin/build` script at the root of the Solidus project:
|
|
345
355
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: solidus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.2.0.alpha
|
|
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:
|
|
11
|
+
date: 2022-08-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: solidus_api
|
|
@@ -16,70 +16,70 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 3.
|
|
19
|
+
version: 3.2.0.alpha
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 3.
|
|
26
|
+
version: 3.2.0.alpha
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: solidus_backend
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - '='
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 3.
|
|
33
|
+
version: 3.2.0.alpha
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - '='
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 3.
|
|
40
|
+
version: 3.2.0.alpha
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: solidus_core
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - '='
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 3.
|
|
47
|
+
version: 3.2.0.alpha
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - '='
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 3.
|
|
54
|
+
version: 3.2.0.alpha
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: solidus_frontend
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - '='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 3.
|
|
61
|
+
version: 3.2.0.alpha
|
|
62
62
|
type: :runtime
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - '='
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: 3.
|
|
68
|
+
version: 3.2.0.alpha
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: solidus_sample
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
72
72
|
requirements:
|
|
73
73
|
- - '='
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: 3.
|
|
75
|
+
version: 3.2.0.alpha
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - '='
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: 3.
|
|
82
|
+
version: 3.2.0.alpha
|
|
83
83
|
description: Solidus is an open source e-commerce framework for Ruby on Rails.
|
|
84
84
|
email: contact@solidus.io
|
|
85
85
|
executables: []
|
|
@@ -95,8 +95,9 @@ files:
|
|
|
95
95
|
homepage: http://solidus.io
|
|
96
96
|
licenses:
|
|
97
97
|
- BSD-3-Clause
|
|
98
|
-
metadata:
|
|
99
|
-
|
|
98
|
+
metadata:
|
|
99
|
+
rubygems_mfa_required: 'true'
|
|
100
|
+
post_install_message:
|
|
100
101
|
rdoc_options: []
|
|
101
102
|
require_paths:
|
|
102
103
|
- lib
|
|
@@ -111,8 +112,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
112
|
- !ruby/object:Gem::Version
|
|
112
113
|
version: 1.8.23
|
|
113
114
|
requirements: []
|
|
114
|
-
rubygems_version: 3.
|
|
115
|
-
signing_key:
|
|
115
|
+
rubygems_version: 3.1.2
|
|
116
|
+
signing_key:
|
|
116
117
|
specification_version: 4
|
|
117
118
|
summary: Full-stack e-commerce framework for Ruby on Rails.
|
|
118
119
|
test_files: []
|