solidus 1.3.2 → 1.4.0.beta1
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 +27 -12
- data/lib/sandbox.sh +12 -6
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 69dc4e3ce72a15672f3e28042c010df6c04b4d0e
|
4
|
+
data.tar.gz: ffd99f105f08391ca4b6999be5cd04a3783157a2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0a6cf2a736c4fa4868e72d7630df48dfb94e628bda24271c9f35b49f0904d591c8bc1ed5550186207ef52d59aed2be907d81b5a2cec40bf0dae61fefb4c6986
|
7
|
+
data.tar.gz: 1b16432c0132fec624dd7d390cf75c461e9af5487afdaf3aaebd1df7037fe7813996a10714ae35f309ee366ab4362531094e91c7b3c34be27b33c89111e2e344
|
data/README.md
CHANGED
@@ -15,24 +15,31 @@ is a fork of Spree.
|
|
15
15
|
Solidus actually consists of several different gems, each of which are maintained
|
16
16
|
in a single repository and documented in a single set of
|
17
17
|
[online documentation](http://docs.solidus.io/). By requiring the
|
18
|
-
solidus gem you automatically require all
|
18
|
+
[`solidus`](https://github.com/solidusio/solidus) gem you automatically require all
|
19
|
+
of the necessary gem dependencies which are:
|
19
20
|
|
20
|
-
* solidus
|
21
|
-
* solidus
|
22
|
-
* solidus
|
23
|
-
* solidus
|
24
|
-
* solidus
|
21
|
+
* [`solidus_api`](https://github.com/solidusio/solidus/tree/master/api) (RESTful API)
|
22
|
+
* [`solidus_frontend`](https://github.com/solidusio/solidus/tree/master/frontend) (Cart and storefront)
|
23
|
+
* [`solidus_backend`](https://github.com/solidusio/solidus/tree/master/backend) (Admin area)
|
24
|
+
* [`solidus_core`](https://github.com/solidusio/solidus/tree/master/core) (Essential models, mailers, and classes)
|
25
|
+
* [`solidus_sample`](https://github.com/solidusio/solidus/tree/master/sample) (Sample data)
|
25
26
|
|
26
27
|
All of the gems are designed to work together to provide a fully functional
|
27
28
|
e-commerce platform. It is also possible, however, to use only the pieces you
|
28
|
-
are interested in. For example, you could use just the barebones
|
29
|
-
gem and perhaps combine it with your own
|
30
|
-
solidus
|
29
|
+
are interested in. For example, you could use just the barebones
|
30
|
+
[`solidus_core`](https://github.com/solidusio/solidus/tree/master/core) gem and perhaps combine it with your own
|
31
|
+
custom frontend instead of using [`solidus_frontend`](https://github.com/solidusio/solidus/tree/master/frontend).
|
31
32
|
|
32
33
|
[](https://circleci.com/gh/solidusio/solidus/tree/master)
|
33
34
|
[](https://rubygems.org/gems/solidus)
|
34
35
|
[](LICENSE.md)
|
35
36
|
|
37
|
+
Demo
|
38
|
+
----
|
39
|
+
Try out Solidus with one-click on Heroku:
|
40
|
+
|
41
|
+
[](https://heroku.com/deploy?template=https://github.com/solidusio/solidus)
|
42
|
+
|
36
43
|
Getting started
|
37
44
|
---------------
|
38
45
|
|
@@ -51,6 +58,7 @@ configuration files and migrations.
|
|
51
58
|
|
52
59
|
```
|
53
60
|
bundle exec rails g spree:install
|
61
|
+
bundle exec rails g solidus:auth:install
|
54
62
|
bundle exec rake railties:install:migrations
|
55
63
|
```
|
56
64
|
|
@@ -64,11 +72,18 @@ Finally start the rails server
|
|
64
72
|
|
65
73
|
```
|
66
74
|
bundle exec rails s
|
67
|
-
|
75
|
+
```
|
76
|
+
|
77
|
+
The [`solidus_frontend`](https://github.com/solidusio/solidus/tree/master/frontend) storefront will be accessible at [http://localhost:3000/](http://localhost:3000/)
|
78
|
+
and the admin can be found at [http://localhost:3000/admin/](http://localhost:3000/admin/).
|
79
|
+
|
80
|
+
### Default Username/Password
|
81
|
+
|
82
|
+
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.
|
68
83
|
|
69
|
-
|
70
|
-
and the admin can be found at http://localhost:3000/admin/.
|
84
|
+
### Questions?
|
71
85
|
|
86
|
+
The best way to ask questions is via the [#support channel on the Solidus Slack](https://solidusio.slack.com/messages/support/details/).
|
72
87
|
|
73
88
|
Installation options
|
74
89
|
--------------------
|
data/lib/sandbox.sh
CHANGED
@@ -1,16 +1,22 @@
|
|
1
1
|
#!/bin/sh
|
2
2
|
# Used in the sandbox rake task in Rakefile
|
3
3
|
|
4
|
+
set -e
|
5
|
+
|
4
6
|
case "$DB" in
|
5
7
|
postgres|postgresql)
|
6
|
-
|
7
|
-
|
8
|
+
RAILSDB="postgresql"
|
9
|
+
;;
|
8
10
|
mysql)
|
9
|
-
|
10
|
-
|
11
|
+
RAILSDB="mysql"
|
12
|
+
;;
|
13
|
+
sqlite|'')
|
14
|
+
RAILSDB="sqlite3"
|
15
|
+
;;
|
11
16
|
*)
|
12
|
-
|
13
|
-
|
17
|
+
echo "Invalid DB specified: $DB"
|
18
|
+
exit 1
|
19
|
+
;;
|
14
20
|
esac
|
15
21
|
|
16
22
|
rm -rf ./sandbox
|
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: 1.
|
4
|
+
version: 1.4.0.beta1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Solidus Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-08-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: solidus_core
|
@@ -16,70 +16,70 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.4.0.beta1
|
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: 1.
|
26
|
+
version: 1.4.0.beta1
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: solidus_api
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - '='
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 1.
|
33
|
+
version: 1.4.0.beta1
|
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: 1.
|
40
|
+
version: 1.4.0.beta1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: solidus_backend
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
45
|
- - '='
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.
|
47
|
+
version: 1.4.0.beta1
|
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: 1.
|
54
|
+
version: 1.4.0.beta1
|
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: 1.
|
61
|
+
version: 1.4.0.beta1
|
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: 1.
|
68
|
+
version: 1.4.0.beta1
|
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: 1.
|
75
|
+
version: 1.4.0.beta1
|
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: 1.
|
82
|
+
version: 1.4.0.beta1
|
83
83
|
description: Solidus is an open source e-commerce framework for Ruby on Rails.
|
84
84
|
email: contact@solidus.io
|
85
85
|
executables: []
|
@@ -111,7 +111,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
111
111
|
requirements:
|
112
112
|
- none
|
113
113
|
rubyforge_project:
|
114
|
-
rubygems_version: 2.
|
114
|
+
rubygems_version: 2.5.1
|
115
115
|
signing_key:
|
116
116
|
specification_version: 4
|
117
117
|
summary: Full-stack e-commerce framework for Ruby on Rails.
|