elasticgraph-admin_lambda 1.0.0.rc1 → 1.0.0.rc3
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 +21 -0
- metadata +10 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 709f36adbc8a4991abc3ce79a871524dd3c175a95e6ec18fc9bab36948efaaac
|
4
|
+
data.tar.gz: bf8167e03e8f8d66c46a6068bcc53bac3604fe0b9f5a7baec4d33c6c849dcecc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea558fa59c568ded101568a17db3bf7f2207db9e169a68cc8848b6f1fa241ef0d090d91c4ba95d66f3ced0d88779e54c0b1443e79e2616449c33ea5ea5e1ec75
|
7
|
+
data.tar.gz: '068302ec97608dc9603b6ba0173e67e6cf3f8a46d6b96c81d731b6ada33e00a296216e44426466c747844e5fbf659983084be22839eedce6bd43ac11d1dff7bb'
|
data/README.md
CHANGED
@@ -1,3 +1,24 @@
|
|
1
1
|
# ElasticGraph::AdminLambda
|
2
2
|
|
3
3
|
This gem wraps `elasticgraph-admin` in order to run it from an AWS Lambda.
|
4
|
+
|
5
|
+
## Dependency Diagram
|
6
|
+
|
7
|
+
```mermaid
|
8
|
+
graph LR;
|
9
|
+
classDef targetGemStyle fill:#FADBD8,stroke:#EC7063,color:#000,stroke-width:2px;
|
10
|
+
classDef otherEgGemStyle fill:#A9DFBF,stroke:#2ECC71,color:#000;
|
11
|
+
classDef externalGemStyle fill:#E0EFFF,stroke:#70A1D7,color:#2980B9;
|
12
|
+
elasticgraph-admin_lambda["elasticgraph-admin_lambda"];
|
13
|
+
class elasticgraph-admin_lambda targetGemStyle;
|
14
|
+
rake["rake"];
|
15
|
+
elasticgraph-admin_lambda --> rake;
|
16
|
+
class rake externalGemStyle;
|
17
|
+
elasticgraph-admin["elasticgraph-admin"];
|
18
|
+
elasticgraph-admin_lambda --> elasticgraph-admin;
|
19
|
+
class elasticgraph-admin otherEgGemStyle;
|
20
|
+
elasticgraph-lambda_support["elasticgraph-lambda_support"];
|
21
|
+
elasticgraph-admin_lambda --> elasticgraph-lambda_support;
|
22
|
+
class elasticgraph-lambda_support otherEgGemStyle;
|
23
|
+
click rake href "https://rubygems.org/gems/rake" "Open on RubyGems.org" _blank;
|
24
|
+
```
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: elasticgraph-admin_lambda
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.0.
|
4
|
+
version: 1.0.0.rc3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Myron Marston
|
@@ -17,48 +17,42 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: '13.
|
21
|
-
- - ">="
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version: 13.2.1
|
20
|
+
version: '13.3'
|
24
21
|
type: :runtime
|
25
22
|
prerelease: false
|
26
23
|
version_requirements: !ruby/object:Gem::Requirement
|
27
24
|
requirements:
|
28
25
|
- - "~>"
|
29
26
|
- !ruby/object:Gem::Version
|
30
|
-
version: '13.
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: 13.2.1
|
27
|
+
version: '13.3'
|
34
28
|
- !ruby/object:Gem::Dependency
|
35
29
|
name: elasticgraph-admin
|
36
30
|
requirement: !ruby/object:Gem::Requirement
|
37
31
|
requirements:
|
38
32
|
- - '='
|
39
33
|
- !ruby/object:Gem::Version
|
40
|
-
version: 1.0.0.
|
34
|
+
version: 1.0.0.rc3
|
41
35
|
type: :runtime
|
42
36
|
prerelease: false
|
43
37
|
version_requirements: !ruby/object:Gem::Requirement
|
44
38
|
requirements:
|
45
39
|
- - '='
|
46
40
|
- !ruby/object:Gem::Version
|
47
|
-
version: 1.0.0.
|
41
|
+
version: 1.0.0.rc3
|
48
42
|
- !ruby/object:Gem::Dependency
|
49
43
|
name: elasticgraph-lambda_support
|
50
44
|
requirement: !ruby/object:Gem::Requirement
|
51
45
|
requirements:
|
52
46
|
- - '='
|
53
47
|
- !ruby/object:Gem::Version
|
54
|
-
version: 1.0.0.
|
48
|
+
version: 1.0.0.rc3
|
55
49
|
type: :runtime
|
56
50
|
prerelease: false
|
57
51
|
version_requirements: !ruby/object:Gem::Requirement
|
58
52
|
requirements:
|
59
53
|
- - '='
|
60
54
|
- !ruby/object:Gem::Version
|
61
|
-
version: 1.0.0.
|
55
|
+
version: 1.0.0.rc3
|
62
56
|
email:
|
63
57
|
- myron@squareup.com
|
64
58
|
executables: []
|
@@ -76,10 +70,10 @@ licenses:
|
|
76
70
|
- MIT
|
77
71
|
metadata:
|
78
72
|
bug_tracker_uri: https://github.com/block/elasticgraph/issues
|
79
|
-
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.0.
|
80
|
-
documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.0.
|
73
|
+
changelog_uri: https://github.com/block/elasticgraph/releases/tag/v1.0.0.rc3
|
74
|
+
documentation_uri: https://block.github.io/elasticgraph/api-docs/v1.0.0.rc3/
|
81
75
|
homepage_uri: https://block.github.io/elasticgraph/
|
82
|
-
source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.0.
|
76
|
+
source_code_uri: https://github.com/block/elasticgraph/tree/v1.0.0.rc3/elasticgraph-admin_lambda
|
83
77
|
gem_category: lambda
|
84
78
|
rdoc_options: []
|
85
79
|
require_paths:
|