solidus 1.3.2 → 1.4.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +27 -12
  3. data/lib/sandbox.sh +12 -6
  4. metadata +13 -13
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7ef139246e1c537aa77de8c398ce7140298e62a1
4
- data.tar.gz: 9f917e1a1074eaefb2d2eb358e65ebc2670dba69
3
+ metadata.gz: 69dc4e3ce72a15672f3e28042c010df6c04b4d0e
4
+ data.tar.gz: ffd99f105f08391ca4b6999be5cd04a3783157a2
5
5
  SHA512:
6
- metadata.gz: 24100ff55df77b0532a6f01db6072e4cfa636670bc1e8d8bf0637959d54cb91630728c9b42082f79db2a58d106747779c39daa149d2d82f207e21f29954979d7
7
- data.tar.gz: ce0e8a7ec4f059461ea3a36e00b9f73e9d3965975dca7999b2750a6b5db1e1ba3abc23777c626a218399a2645ddf5563c19c820f461bf3e4fea7c1bbcf6a2d1c
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 of the necessary gem dependencies which are:
18
+ [`solidus`](https://github.com/solidusio/solidus) gem you automatically require all
19
+ of the necessary gem dependencies which are:
19
20
 
20
- * solidus\_api (RESTful API)
21
- * solidus\_frontend (Cart and storefront)
22
- * solidus\_backend (Admin area)
23
- * solidus\_core (Essential models, mailers, and classes)
24
- * solidus\_sample (Sample data)
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 solidus\_core
29
- gem and perhaps combine it with your own custom frontend instead of using
30
- solidus\_frontend.
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
  [![Circle CI](https://circleci.com/gh/solidusio/solidus/tree/master.svg?style=shield)](https://circleci.com/gh/solidusio/solidus/tree/master)
33
34
  [![Gem](https://img.shields.io/gem/v/solidus.svg)](https://rubygems.org/gems/solidus)
34
35
  [![License](http://img.shields.io/badge/license-BSD-yellowgreen.svg)](LICENSE.md)
35
36
 
37
+ Demo
38
+ ----
39
+ Try out Solidus with one-click on Heroku:
40
+
41
+ [![Deploy](https://www.herokucdn.com/deploy/button.png)](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
- The solidus_frontend storefront will be accessible at http://localhost:3000/
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
- RAILSDB="postgresql"
7
- ;;
8
+ RAILSDB="postgresql"
9
+ ;;
8
10
  mysql)
9
- RAILSDB="mysql"
10
- ;;
11
+ RAILSDB="mysql"
12
+ ;;
13
+ sqlite|'')
14
+ RAILSDB="sqlite3"
15
+ ;;
11
16
  *)
12
- RAILSDB="sqlite3"
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.3.2
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: 2017-12-12 00:00:00.000000000 Z
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.3.2
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.3.2
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.3.2
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.3.2
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.3.2
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.3.2
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.3.2
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.3.2
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.3.2
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.3.2
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.6.11
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.