solidus 3.1.6 → 3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +18 -8
  3. metadata +15 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4babea19b5edf95011da5d67a58f67bc0b846f08892ff4088d79cdd8b33b05e9
4
- data.tar.gz: 88e6f585b6670c4eeae5618070ac9d444d233b9360479a9b4bfaa94ebc498432
3
+ metadata.gz: 48e03881b86df6a3bac0ba755ad2688839ebc9fdebbf6530c789d8a0b8759473
4
+ data.tar.gz: 9bda9e8cf90dbf3b88621314d99fc1f68f3f45425dace719d53e0d85ce2f9ed6
5
5
  SHA512:
6
- metadata.gz: 9d68eaa6693eeb00441fb317aac63aa6bd27f102bde6af94a7a0d30db5f65b0484d5091783c87cf353e8e5f92dc92e2ee6031a14467a93621d80df13111b804d
7
- data.tar.gz: dd3dc6e11cac9a2bd554db29943a7c99130782f53c6127ad4b81508997b5fa7fbcd247430057259ed28f06d9046e0d34c12ade53d4a8a6b732b12d81bca11a7a
6
+ metadata.gz: 2fb6a0dde06a2661dc6762f430360ab276fd0f4d5c50707aa46929d3c9b03865575be98874e9ff5046e260d3dca5cae65afa4e9a82fbb8de11064e4bfc46756c
7
+ data.tar.gz: 57fc24dec040cfabac4e25fe48762e512bae7b285481b2438cfa9292de87e21aee4141bba72e055bf7cf6fd01d24ce3c47029330365420d9a8eb077c6329a4be
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
- [![Nebulab](https://nebulab.com/assets/img/logo-nebulab_black.svg)](https://nebulab.com/)
45
+ [![Nebulab](https://nebulab.com/assets/img/logo-nebulab_gh-dark-light-mode.svg)](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
- [![Super Good Software](https://images.opencollective.com/proxy/images?src=https%3A%2F%2Fopencollective-production.s3-us-west-1.amazonaws.com%2F3bbb1440-727f-11e9-a366-37673cc38cee.png&height=100)](https://supergood.software/)
50
+ [![Super Good Software](https://images.opencollective.com/supergoodsoft/f720462/logo/100.png)](https://supergood.software/)
51
51
  [![Karma Creative](https://images.opencollective.com/proxy/images?src=https%3A%2F%2Fopencollective-production.s3-us-west-1.amazonaws.com%2Fab94d2a0-7253-11e9-a366-37673cc38cee.png&height=100)](https://karmacreative.io/)
52
52
  [![ModdedEuros](https://images.opencollective.com/proxy/images?src=https%3A%2F%2Fimages.opencollective.com%2Fmodded-euros%2Ff1a80ae%2Flogo.png&height=100)](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 maintained in this repository:
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 [`solidus_frontend`](https://github.com/solidusio/solidus/tree/master/frontend) storefront will be accessible at [http://localhost:3000/](http://localhost:3000/)
128
- and the admin can be found at [http://localhost:3000/admin/](http://localhost:3000/admin/).
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.6 app
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://sites.google.com/a/chromium.org/chromedriver/home) is
342
- required to run the frontend and backend test suites.
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.1.6
4
+ version: 3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Solidus Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-06-01 00:00:00.000000000 Z
11
+ date: 2022-08-18 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.1.6
19
+ version: 3.2.0
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.1.6
26
+ version: 3.2.0
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.1.6
33
+ version: 3.2.0
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.1.6
40
+ version: 3.2.0
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.1.6
47
+ version: 3.2.0
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.1.6
54
+ version: 3.2.0
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.1.6
61
+ version: 3.2.0
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.1.6
68
+ version: 3.2.0
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.1.6
75
+ version: 3.2.0
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.1.6
82
+ version: 3.2.0
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,7 +95,8 @@ files:
95
95
  homepage: http://solidus.io
96
96
  licenses:
97
97
  - BSD-3-Clause
98
- metadata: {}
98
+ metadata:
99
+ rubygems_mfa_required: 'true'
99
100
  post_install_message:
100
101
  rdoc_options: []
101
102
  require_paths:
@@ -111,7 +112,7 @@ 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.2.31
115
+ rubygems_version: 3.1.2
115
116
  signing_key:
116
117
  specification_version: 4
117
118
  summary: Full-stack e-commerce framework for Ruby on Rails.