solidus 2.10.0.beta1 → 2.10.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +36 -6
- metadata +17 -17
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf48741a3b43b4e9c0140ff8f8239246834c63871b9f2018ef526da639fcbcb3
|
4
|
+
data.tar.gz: 86fc02c169cb6a885b47b1c3e9fd3f5887f91cfd4e1dc8e197846514ff486f3a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 372aaead84247c930421b7b921bb010fd7542d7c817d4dd194bce63ee78ef33f1319740aa61df971187f6350a93476873f18ccf7965fb44e93c9f4396074833f
|
7
|
+
data.tar.gz: 0a829967d639bf0f2c346e3a12ad365835cfb983cdd21937b0b6302e22a13618a693b11556146a9649e3e49f9c70d6f8e7bd15d3fc394caea2af90d1e5cdca69
|
data/README.md
CHANGED
@@ -17,7 +17,7 @@
|
|
17
17
|
|
18
18
|
- **Visit our website**: [https://solidus.io/](https://solidus.io/)
|
19
19
|
- **Read our guides**: [https://guides.solidus.io/developers/](https://guides.solidus.io/developers/)
|
20
|
-
- **Join our Slack**: [
|
20
|
+
- **Join our Slack**: [http://slack.solidus.io/](http://slack.solidus.io/)
|
21
21
|
- **Solidus Security**: [mailing list](https://groups.google.com/forum/#!forum/solidus-security)
|
22
22
|
|
23
23
|
|
@@ -133,13 +133,15 @@ bundle exec rails s
|
|
133
133
|
The [`solidus_frontend`](https://github.com/solidusio/solidus/tree/master/frontend) storefront will be accessible at [http://localhost:3000/](http://localhost:3000/)
|
134
134
|
and the admin can be found at [http://localhost:3000/admin/](http://localhost:3000/admin/).
|
135
135
|
|
136
|
+
For information on how to customize your store, check out the [customization guides](https://guides.solidus.io/developers/customizations/overview.html).
|
137
|
+
|
136
138
|
### Default Username/Password
|
137
139
|
|
138
140
|
As part of running the above installation steps, you will be asked to set an admin email/password combination. The default values are `admin@example.com` and `test123`, respectively.
|
139
141
|
|
140
142
|
### Questions?
|
141
143
|
|
142
|
-
The best way to ask questions is
|
144
|
+
The best way to ask questions is to [join the Solidus Slack](http://slack.solidus.io/) and join the [#support channel](https://solidusio.slack.com/messages/support/details/).
|
143
145
|
|
144
146
|
## Installation options
|
145
147
|
|
@@ -187,15 +189,19 @@ config.assets.debug = false
|
|
187
189
|
|
188
190
|
To gain some extra speed you may enable Turbolinks inside of Solidus admin.
|
189
191
|
|
190
|
-
Add `gem 'turbolinks', '~> 5.0.0'` into your `Gemfile` (if not already present)
|
192
|
+
Add `gem 'turbolinks', '~> 5.0.0'` into your `Gemfile` (if not already present)
|
193
|
+
and change `vendor/assets/javascripts/spree/backend/all.js` as follows:
|
191
194
|
|
192
195
|
```js
|
193
196
|
//= require turbolinks
|
194
|
-
|
197
|
+
//
|
198
|
+
// ... current file content
|
199
|
+
//
|
200
|
+
//= require spree/backend/turbolinks-integration.js
|
195
201
|
```
|
196
202
|
|
197
|
-
**CAUTION** Please be aware that Turbolinks can break extensions
|
198
|
-
Use at own risk.
|
203
|
+
**CAUTION** Please be aware that Turbolinks can break extensions
|
204
|
+
and/or customizations to the Solidus admin. Use at your own risk.
|
199
205
|
|
200
206
|
## Developing Solidus
|
201
207
|
|
@@ -212,6 +218,16 @@ Use at own risk.
|
|
212
218
|
bundle install
|
213
219
|
```
|
214
220
|
|
221
|
+
_Note_: If you're using PostgreSQL or MySQL, you'll need to install those gems through the DB environment variable.
|
222
|
+
|
223
|
+
```bash
|
224
|
+
# PostgreSQL
|
225
|
+
DB=postgresql bundle install
|
226
|
+
|
227
|
+
# MySQL
|
228
|
+
DB=mysql bundle install
|
229
|
+
```
|
230
|
+
|
215
231
|
### Sandbox
|
216
232
|
|
217
233
|
Solidus is meant to be run within the context of Rails application. You can
|
@@ -230,7 +246,21 @@ data already loaded.
|
|
230
246
|
You can create a sandbox with PostgreSQL or MySQL by setting the DB environment variable.
|
231
247
|
|
232
248
|
```bash
|
249
|
+
# PostgreSQL
|
233
250
|
DB=postgresql bundle exec rake sandbox
|
251
|
+
|
252
|
+
# MySQL
|
253
|
+
DB=mysql bundle exec rake sandbox
|
254
|
+
```
|
255
|
+
|
256
|
+
If you need to create a Rails 5.2 application for your sandbox, for example
|
257
|
+
if you are still using Ruby 2.4 which is not supported by Rails 6, you can
|
258
|
+
use the `RAILS_VERSION` environment variable.
|
259
|
+
|
260
|
+
```bash
|
261
|
+
export RAILS_VERSION='~> 5.2.0'
|
262
|
+
bundle install
|
263
|
+
bundle exec rake sandbox
|
234
264
|
```
|
235
265
|
|
236
266
|
* Start the server
|
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: 2.10.
|
4
|
+
version: 2.10.5
|
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: 2021-05-10 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: 2.10.
|
19
|
+
version: 2.10.5
|
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: 2.10.
|
26
|
+
version: 2.10.5
|
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: 2.10.
|
33
|
+
version: 2.10.5
|
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: 2.10.
|
40
|
+
version: 2.10.5
|
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: 2.10.
|
47
|
+
version: 2.10.5
|
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: 2.10.
|
54
|
+
version: 2.10.5
|
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: 2.10.
|
61
|
+
version: 2.10.5
|
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: 2.10.
|
68
|
+
version: 2.10.5
|
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: 2.10.
|
75
|
+
version: 2.10.5
|
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: 2.10.
|
82
|
+
version: 2.10.5
|
83
83
|
description: Solidus is an open source e-commerce framework for Ruby on Rails.
|
84
84
|
email: contact@solidus.io
|
85
85
|
executables: []
|
@@ -97,7 +97,7 @@ homepage: http://solidus.io
|
|
97
97
|
licenses:
|
98
98
|
- BSD-3-Clause
|
99
99
|
metadata: {}
|
100
|
-
post_install_message:
|
100
|
+
post_install_message:
|
101
101
|
rdoc_options: []
|
102
102
|
require_paths:
|
103
103
|
- lib
|
@@ -105,7 +105,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
105
105
|
requirements:
|
106
106
|
- - ">="
|
107
107
|
- !ruby/object:Gem::Version
|
108
|
-
version: 2.
|
108
|
+
version: 2.4.0
|
109
109
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
110
110
|
requirements:
|
111
111
|
- - ">="
|
@@ -113,8 +113,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
113
|
version: 1.8.23
|
114
114
|
requirements:
|
115
115
|
- none
|
116
|
-
rubygems_version: 3.
|
117
|
-
signing_key:
|
116
|
+
rubygems_version: 3.1.4
|
117
|
+
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: Full-stack e-commerce framework for Ruby on Rails.
|
120
120
|
test_files: []
|