mno-enterprise 3.0.0 → 3.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +16 -4
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 66c05edc36163bc6083930e0e7239d672b80b6c1
|
4
|
+
data.tar.gz: b166e02670fc2acf14c5de118f8c148919c73c14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea8f85673cd344d0e4d2b28bc439946f84d60216447d0f4a30d417495738507129687157fbb7617e34cd18ca0cc17473c0d29881edf1fe13d0f2b951fa1569a0
|
7
|
+
data.tar.gz: 4150db5adcbe514e1b28480f3aa434ed5ab7c2ce91d7ebd5c7548ff83422d42abaeafeb044ae216f0b12c67db52cc0b5d536ef7d049c985104ec079b0ef3042f
|
data/README.md
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
<br/>
|
5
5
|
</p>
|
6
6
|
|
7
|
+
[![Gem Version](https://badge.fury.io/rb/mno-enterprise.svg)](https://rubygems.org/gems/mno-enterprise)
|
8
|
+
|
7
9
|
The Maestrano Enterprise Engine can be included in a Rails project to bootstrap an instance of Maestrano Enterprise Express.
|
8
10
|
|
9
11
|
The goal of this engine is to provide a base that you can easily extend with custom style or logic.
|
@@ -27,15 +29,26 @@ The goal of this engine is to provide a base that you can easily extend with cus
|
|
27
29
|
|
28
30
|
## Install
|
29
31
|
|
32
|
+
### One step install (recommended)
|
33
|
+
|
34
|
+
You can generate a complete rails project using the application template:
|
35
|
+
```ruby
|
36
|
+
rails new [project_name] -TSOJ -m https://raw.githubusercontent.com/maestrano/mno-enterprise/master/rails-template/mnoe-app-template.rb
|
37
|
+
```
|
38
|
+
|
39
|
+
For more details see the template [README](rails-template/README.md).
|
40
|
+
|
41
|
+
### Manual Install
|
42
|
+
|
30
43
|
Create a new rails project:
|
31
44
|
```ruby
|
32
45
|
rails new name-enterprise
|
33
46
|
```
|
34
47
|
|
35
|
-
Add mno-enterprise to your Gemfile.
|
48
|
+
Add mno-enterprise to your Gemfile.
|
36
49
|
```ruby
|
37
50
|
# Maestrano Enterprise Engine
|
38
|
-
gem 'mno-enterprise',
|
51
|
+
gem 'mno-enterprise', '~> 3.0'
|
39
52
|
```
|
40
53
|
|
41
54
|
Run the install script
|
@@ -44,7 +57,6 @@ rails g mno_enterprise:install
|
|
44
57
|
```
|
45
58
|
|
46
59
|
The install script will perform three things:
|
47
|
-
- Propose popular gems to install (e.g. Rspec)
|
48
60
|
- Generate an initializer for Maestrano Enterprise (config/initializers/mno_enterprise.rb)
|
49
61
|
- Install and build the mno-enterprise-angular frontend
|
50
62
|
- Install and build the admin dashboard frontend
|
@@ -55,7 +67,7 @@ Building the frontend requires you to have nodejs and gulp install. While the ra
|
|
55
67
|
|
56
68
|
Once node is installed, you can run the following commands to ensure that all dependencies are installed:
|
57
69
|
```bash
|
58
|
-
|
70
|
+
bin/rake mnoe:frontend:install_dependencies
|
59
71
|
```
|
60
72
|
|
61
73
|
## Building the frontend
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mno-enterprise
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arnaud Lachaume
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2016-04-
|
12
|
+
date: 2016-04-22 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: mno-enterprise-core
|
@@ -17,42 +17,42 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 3.0.
|
20
|
+
version: 3.0.1
|
21
21
|
type: :runtime
|
22
22
|
prerelease: false
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
24
24
|
requirements:
|
25
25
|
- - '='
|
26
26
|
- !ruby/object:Gem::Version
|
27
|
-
version: 3.0.
|
27
|
+
version: 3.0.1
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: mno-enterprise-api
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - '='
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 3.0.
|
34
|
+
version: 3.0.1
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - '='
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 3.0.
|
41
|
+
version: 3.0.1
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: mno-enterprise-frontend
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - '='
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 3.0.
|
48
|
+
version: 3.0.1
|
49
49
|
type: :runtime
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - '='
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 3.0.
|
55
|
+
version: 3.0.1
|
56
56
|
description: Maestrano Enterprise is your application marketplace, out of the box.
|
57
57
|
email:
|
58
58
|
- developers@maestrano.com
|
@@ -84,7 +84,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
84
84
|
version: '0'
|
85
85
|
requirements: []
|
86
86
|
rubyforge_project:
|
87
|
-
rubygems_version: 2.
|
87
|
+
rubygems_version: 2.4.8
|
88
88
|
signing_key:
|
89
89
|
specification_version: 4
|
90
90
|
summary: Maestrano Enterprise
|