solidus 2.10.0.beta1 → 2.10.0

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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +36 -6
  3. metadata +14 -14
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 586357d77a19442a6e610b92f8635d1e1557a08e42c9a3bd1196981c9aa32963
4
- data.tar.gz: 99ca45a4adadd21b559b41ddc079016d9ed6dc2f0270f279cdd66389801bda16
3
+ metadata.gz: 59aa51747229a09313840b587655b0a031770639da735113893acc8bf2010793
4
+ data.tar.gz: 78dcb133cafcc5b2f33ba89a076a3e05dde664bbc99d9bf51cfd27de280e7b7e
5
5
  SHA512:
6
- metadata.gz: 855b25b23445bb45cb98c0c3c49a773698b17e85500d8f44e6c1d49498840873b2848b7d9c916b8b96e39f74ef4922d7c1828fa6b1540f165e4fa18cc36ef435
7
- data.tar.gz: a78ee0b72a30bc8eea9c568d88b9f18c38511003872fbd9a653c449785e6a0a2f76335ebf7f4872de448f091f5e79e1b00221d1194e440ae675d9620a13b671d
6
+ metadata.gz: cb1a354137c425a1ab14bb8ca60fbfe9c9569975295e6e12933d2358b06f5a0846641b65085df15c553ddacc1f0663e9a33b13a4fed9b0150b3f1d87f98bae3d
7
+ data.tar.gz: fb83f7c97d0c2f5c3c6fb1833f059019330f0857c3747824508dc4e7f532bff362bc5b58efdaa495f5a8428497fc77b8cda81ce4e5e97cdb74970f7127deb9d8
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**: [https://solidusio.slack.com/](https://solidusio.slack.com/)
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 via the [#support channel on the Solidus Slack](https://solidusio.slack.com/messages/support/details/).
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) and append these lines to `vendor/assets/spree/backend/all.js`:
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
- //= require backend/app/assets/javascripts/spree/backend/turbolinks-integration.js
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 and/or customizations to the Solidus admin.
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.0.beta1
4
+ version: 2.10.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: 2019-09-19 00:00:00.000000000 Z
11
+ date: 2020-01-15 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.0.beta1
19
+ version: 2.10.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: 2.10.0.beta1
26
+ version: 2.10.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: 2.10.0.beta1
33
+ version: 2.10.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: 2.10.0.beta1
40
+ version: 2.10.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: 2.10.0.beta1
47
+ version: 2.10.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: 2.10.0.beta1
54
+ version: 2.10.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: 2.10.0.beta1
61
+ version: 2.10.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: 2.10.0.beta1
68
+ version: 2.10.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: 2.10.0.beta1
75
+ version: 2.10.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: 2.10.0.beta1
82
+ version: 2.10.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: []
@@ -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.2.2
108
+ version: 2.4.0
109
109
  required_rubygems_version: !ruby/object:Gem::Requirement
110
110
  requirements:
111
111
  - - ">="
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
113
113
  version: 1.8.23
114
114
  requirements:
115
115
  - none
116
- rubygems_version: 3.0.6
116
+ rubygems_version: 3.0.3
117
117
  signing_key:
118
118
  specification_version: 4
119
119
  summary: Full-stack e-commerce framework for Ruby on Rails.