elasticgraph 1.0.0.rc1 → 1.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 +18 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78b16c8272379e4932d7e455daccd885a43f7dd2d82f6a48f3696b916de677cf
|
4
|
+
data.tar.gz: dc991b0fbef27b15d3e199153c1ca1dafac052c8e707eae064a6acd8d0808f14
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bb28af8f0c4cc10efc3c1bb05312b6d9d38713ff7e3c5d736b954061f78b6f58f0377fb08231123dd95ae19e684d2535cd0862b842105ab6f95844b4a3eda54
|
7
|
+
data.tar.gz: d0aee0f4dd2de256c0c84469264bdb189f17643c57582b065dcb88377dfa0d55039185657a6d95c603ea24a4867a1e4ed502ef3892d3a2b0f5e25c4535ea0d0e
|
data/README.md
CHANGED
@@ -3,6 +3,24 @@
|
|
3
3
|
ElasticGraph meta-gem that pulls in all the core ElasticGraph gems. Intended for use when all
|
4
4
|
parts of ElasticGraph are used from the same deployed app.
|
5
5
|
|
6
|
+
## Dependency Diagram
|
7
|
+
|
8
|
+
```mermaid
|
9
|
+
graph LR;
|
10
|
+
classDef targetGemStyle fill:#FADBD8,stroke:#EC7063,color:#000,stroke-width:2px;
|
11
|
+
classDef otherEgGemStyle fill:#A9DFBF,stroke:#2ECC71,color:#000;
|
12
|
+
classDef externalGemStyle fill:#E0EFFF,stroke:#70A1D7,color:#2980B9;
|
13
|
+
elasticgraph["elasticgraph"];
|
14
|
+
class elasticgraph targetGemStyle;
|
15
|
+
elasticgraph-support["elasticgraph-support"];
|
16
|
+
elasticgraph --> elasticgraph-support;
|
17
|
+
class elasticgraph-support otherEgGemStyle;
|
18
|
+
thor["thor"];
|
19
|
+
elasticgraph --> thor;
|
20
|
+
class thor externalGemStyle;
|
21
|
+
click thor href "https://rubygems.org/gems/thor" "Open on RubyGems.org" _blank;
|
22
|
+
```
|
23
|
+
|
6
24
|
## Getting Started
|
7
25
|
|
8
26
|
Run this command to bootstrap a new local project:
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticgraph
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Myron Marston
|
@@ -17,14 +17,14 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 1.0.0.
|
20
|
+
version: 1.0.0.rc2
|
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: 1.0.0.
|
27
|
+
version: 1.0.0.rc2
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: thor
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
@@ -75,10 +75,10 @@ licenses:
|
|
75
75
|
- MIT
|
76
76
|
metadata:
|
77
77
|
bug_tracker_uri: https://github.com/block/elasticgraph/issues
|
78
|
-
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.0.
|
79
|
-
documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.0.
|
78
|
+
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.0.rc2
|
79
|
+
documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.0.rc2/
|
80
80
|
homepage_uri: https://block.github.io/elasticgraph/
|
81
|
-
source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.0.
|
81
|
+
source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.0.rc2/elasticgraph
|
82
82
|
gem_category: local
|
83
83
|
rdoc_options: []
|
84
84
|
require_paths:
|