solidus 2.11.17 → 3.0.0.rc2
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 +12 -10
- metadata +16 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9e746f0448f43856402bec51920fce6ceb37c83026421b5f969ab5e930ae3346
|
|
4
|
+
data.tar.gz: 47b56d857e6d8638dd4acbbdb2ffb7629a0b4aff07df6d6871f722928d4e64be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 87250b73b238df6366515ff4ea34ea4a7f2535fd6339f8d85ab818cc77810b5e82384a81a789b861311000c85561fb778c1e3095265037db23ec71e64bff84a4
|
|
7
|
+
data.tar.gz: 5b6303e1ec474b3a881285faa5edb7b9734dbfc2aa88e83ff76f140f05236f6d257e82c430c277669b08fd59afe99ef0f60e93e1d6ac5164501ebc55ead2e5c7
|
data/README.md
CHANGED
|
@@ -78,11 +78,13 @@ combine it with your own custom frontend, admin interface, and API.
|
|
|
78
78
|
|
|
79
79
|
## Demo
|
|
80
80
|
|
|
81
|
-
|
|
81
|
+
You can try the live Solidus demo [here.](http://demo.solidus.io/) The admin section can be accessed [here.](http://demo.solidus.io/admin)
|
|
82
|
+
|
|
83
|
+
You can also try out Solidus with one-click on Heroku:
|
|
82
84
|
|
|
83
85
|
[](https://heroku.com/deploy?template=https://github.com/solidusio/solidus-example-app)
|
|
84
86
|
|
|
85
|
-
|
|
87
|
+
Additionally, you can use Docker to run a demo on your local machine. Run the
|
|
86
88
|
following command to download the image and run it at
|
|
87
89
|
[http://localhost:3000](http://localhost:3000).
|
|
88
90
|
|
|
@@ -107,14 +109,12 @@ created.
|
|
|
107
109
|
### Installing Solidus
|
|
108
110
|
|
|
109
111
|
<details>
|
|
110
|
-
<summary>For Solidus v2.
|
|
112
|
+
<summary>For Solidus v2.11 and above</summary>
|
|
111
113
|
|
|
112
|
-
Add the following to your Gemfile.
|
|
113
|
-
if you want to use a custom authentication system.
|
|
114
|
+
Add the following to your Gemfile.
|
|
114
115
|
|
|
115
116
|
```ruby
|
|
116
117
|
gem 'solidus'
|
|
117
|
-
gem 'solidus_auth_devise'
|
|
118
118
|
```
|
|
119
119
|
|
|
120
120
|
Run the `bundle` command to install.
|
|
@@ -123,17 +123,19 @@ created.
|
|
|
123
123
|
configuration files and migrations.
|
|
124
124
|
|
|
125
125
|
```bash
|
|
126
|
-
bin/rails g
|
|
126
|
+
bin/rails g solidus:install
|
|
127
127
|
```
|
|
128
128
|
</details>
|
|
129
129
|
|
|
130
130
|
<details>
|
|
131
|
-
<summary>For Solidus v2.
|
|
131
|
+
<summary>For Solidus v2.10 and below</summary>
|
|
132
132
|
|
|
133
|
-
Add the following to your Gemfile.
|
|
133
|
+
Add the following to your Gemfile. Skip the `solidus_auth_devise` part
|
|
134
|
+
if you want to use a custom authentication system.
|
|
134
135
|
|
|
135
136
|
```ruby
|
|
136
137
|
gem 'solidus'
|
|
138
|
+
gem 'solidus_auth_devise'
|
|
137
139
|
```
|
|
138
140
|
|
|
139
141
|
Run the `bundle` command to install.
|
|
@@ -142,7 +144,7 @@ created.
|
|
|
142
144
|
configuration files and migrations.
|
|
143
145
|
|
|
144
146
|
```bash
|
|
145
|
-
bin/rails g
|
|
147
|
+
bin/rails g spree:install
|
|
146
148
|
```
|
|
147
149
|
</details>
|
|
148
150
|
|
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:
|
|
4
|
+
version: 3.0.0.rc2
|
|
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-03-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:
|
|
19
|
+
version: 3.0.0.rc2
|
|
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:
|
|
26
|
+
version: 3.0.0.rc2
|
|
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:
|
|
33
|
+
version: 3.0.0.rc2
|
|
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:
|
|
40
|
+
version: 3.0.0.rc2
|
|
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:
|
|
47
|
+
version: 3.0.0.rc2
|
|
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:
|
|
54
|
+
version: 3.0.0.rc2
|
|
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:
|
|
61
|
+
version: 3.0.0.rc2
|
|
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:
|
|
68
|
+
version: 3.0.0.rc2
|
|
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:
|
|
75
|
+
version: 3.0.0.rc2
|
|
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:
|
|
82
|
+
version: 3.0.0.rc2
|
|
83
83
|
description: Solidus is an open source e-commerce framework for Ruby on Rails.
|
|
84
84
|
email: contact@solidus.io
|
|
85
85
|
executables: []
|
|
@@ -96,7 +96,7 @@ homepage: http://solidus.io
|
|
|
96
96
|
licenses:
|
|
97
97
|
- BSD-3-Clause
|
|
98
98
|
metadata: {}
|
|
99
|
-
post_install_message:
|
|
99
|
+
post_install_message:
|
|
100
100
|
rdoc_options: []
|
|
101
101
|
require_paths:
|
|
102
102
|
- lib
|
|
@@ -111,8 +111,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
111
111
|
- !ruby/object:Gem::Version
|
|
112
112
|
version: 1.8.23
|
|
113
113
|
requirements: []
|
|
114
|
-
rubygems_version: 3.1.
|
|
115
|
-
signing_key:
|
|
114
|
+
rubygems_version: 3.1.4
|
|
115
|
+
signing_key:
|
|
116
116
|
specification_version: 4
|
|
117
117
|
summary: Full-stack e-commerce framework for Ruby on Rails.
|
|
118
118
|
test_files: []
|