ecl 3.0.0 → 3.0.1
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/Gemfile.lock +10 -10
- data/{LICENSE.txt → LICENSE} +2 -1
- data/README.md +28 -27
- data/eclair.gemspec +1 -1
- data/lib/eclair/version.rb +1 -1
- 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: d418f427cd07120e2ce1d561201f39577631d88cf2c5f11a8a454f6cb1e5a88e
|
|
4
|
+
data.tar.gz: 4ecd65b9f7ea0204918b0d2c54bb07dff681e631fd0b3705f269038dfb2d17bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5cf13d19cd882fc13eef4ece7c08360060aa509135c1d2796f4f93ffd94b756b83d38b9e73d50ff3518eec2b7ee55fa3d8f865715236b2c7b6d47a658d9e2807
|
|
7
|
+
data.tar.gz: 21b952fc210aa49b9ded6cf5f58fb9d238f131205d4050aa0cca8f6b09d46e2bb8a0736bca54b9bbd7d70de24c33281cff756e8bd551334eae88cf4b848eb070
|
data/Gemfile.lock
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
ecl (3.0.
|
|
4
|
+
ecl (3.0.1)
|
|
5
5
|
aws-sdk-ec2 (~> 1.18)
|
|
6
6
|
curses (~> 1.0)
|
|
7
7
|
json (~> 2.1)
|
|
@@ -13,14 +13,14 @@ GEM
|
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
15
|
aws-eventstream (1.0.3)
|
|
16
|
-
aws-partitions (1.
|
|
17
|
-
aws-sdk-core (3.
|
|
16
|
+
aws-partitions (1.240.0)
|
|
17
|
+
aws-sdk-core (3.78.0)
|
|
18
18
|
aws-eventstream (~> 1.0, >= 1.0.2)
|
|
19
|
-
aws-partitions (~> 1.0)
|
|
19
|
+
aws-partitions (~> 1, >= 1.239.0)
|
|
20
20
|
aws-sigv4 (~> 1.1)
|
|
21
21
|
jmespath (~> 1.0)
|
|
22
|
-
aws-sdk-ec2 (1.
|
|
23
|
-
aws-sdk-core (~> 3, >= 3.
|
|
22
|
+
aws-sdk-ec2 (1.116.0)
|
|
23
|
+
aws-sdk-core (~> 3, >= 3.71.0)
|
|
24
24
|
aws-sigv4 (~> 1.1)
|
|
25
25
|
aws-sigv4 (1.1.0)
|
|
26
26
|
aws-eventstream (~> 1.0, >= 1.0.2)
|
|
@@ -29,11 +29,11 @@ GEM
|
|
|
29
29
|
jmespath (1.4.0)
|
|
30
30
|
json (2.2.0)
|
|
31
31
|
method_source (0.9.2)
|
|
32
|
-
oj (3.
|
|
32
|
+
oj (3.9.2)
|
|
33
33
|
pry (0.12.2)
|
|
34
34
|
coderay (~> 1.1.0)
|
|
35
35
|
method_source (~> 0.9.0)
|
|
36
|
-
rake (
|
|
36
|
+
rake (13.0.1)
|
|
37
37
|
ruby-string-match-scorer (0.1.0)
|
|
38
38
|
|
|
39
39
|
PLATFORMS
|
|
@@ -42,7 +42,7 @@ PLATFORMS
|
|
|
42
42
|
DEPENDENCIES
|
|
43
43
|
bundler (~> 2.0)
|
|
44
44
|
ecl!
|
|
45
|
-
rake (~>
|
|
45
|
+
rake (~> 13.0)
|
|
46
46
|
|
|
47
47
|
BUNDLED WITH
|
|
48
|
-
2.0.
|
|
48
|
+
2.0.2
|
data/{LICENSE.txt → LICENSE}
RENAMED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2015
|
|
3
|
+
Copyright (c) 2015 Minkyu Kim
|
|
4
|
+
Copyright (c) 2015-2019 Devsisters Corp.
|
|
4
5
|
|
|
5
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
7
|
of this software and associated documentation files (the "Software"), to deal
|
data/README.md
CHANGED
|
@@ -4,40 +4,22 @@ eclair [![RubyGems total downloads]][RubyGems]
|
|
|
4
4
|
|
|
5
5
|
Simple ssh helper for Amazon EC2
|
|
6
6
|
|
|
7
|
-
Requirements
|
|
8
|
-
--------
|
|
9
|
-
- tmux > 2.0
|
|
10
|
-
- Properly configured `~/.aws/credentials`
|
|
11
|
-
|
|
12
|
-
Installation
|
|
13
|
-
--------
|
|
14
7
|
```bash
|
|
15
8
|
gem install ecl
|
|
16
|
-
|
|
17
|
-
# If you want to install alpha release:
|
|
18
|
-
gem install ecl --pre
|
|
19
9
|
```
|
|
20
10
|
|
|
21
|
-
###
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
# Headers of ncursesw is required to build Eclair in GNU/Linux
|
|
25
|
-
sudo apt-get install libncursesw5-dev # Debian, Ubuntu, etc
|
|
26
|
-
sudo yum install libncursesw5-devel # CentOS, etc
|
|
27
|
-
|
|
28
|
-
# Build latest eclair gem
|
|
29
|
-
gem build eclair.gemspec
|
|
30
|
-
|
|
31
|
-
# Install eclair into your system
|
|
32
|
-
gem install ecl-3.0.0.gem
|
|
33
|
-
```
|
|
11
|
+
### Requirements
|
|
12
|
+
- tmux > 2.0
|
|
13
|
+
- Properly configured `~/.aws/credentials`
|
|
34
14
|
|
|
35
|
-
|
|
15
|
+
### Usage
|
|
36
16
|
```console
|
|
37
17
|
$ ecl
|
|
38
18
|
```
|
|
39
19
|
First execution will create `~/.ecl/config.rb` file. Edit this file and run again.
|
|
40
20
|
|
|
21
|
+
|
|
22
|
+
|
|
41
23
|
Configurations
|
|
42
24
|
--------
|
|
43
25
|
### aws_region
|
|
@@ -128,13 +110,32 @@ config.ssh_keys = {
|
|
|
128
110
|
}
|
|
129
111
|
```
|
|
130
112
|
|
|
131
|
-
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
Install from Source
|
|
116
|
+
--------
|
|
117
|
+
If you want to use the latest functionalities, install Eclair from the source.
|
|
118
|
+
```bash
|
|
119
|
+
# Headers of ncursesw is required to build Eclair in GNU/Linux
|
|
120
|
+
sudo apt-get install libncursesw5-dev # Debian, Ubuntu, etc
|
|
121
|
+
sudo yum install libncursesw5-devel # CentOS, etc
|
|
122
|
+
|
|
123
|
+
# Build latest eclair gem
|
|
124
|
+
gem build eclair.gemspec
|
|
125
|
+
|
|
126
|
+
# Install eclair into your system
|
|
127
|
+
gem install ecl-3.0.1.gem
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
|
|
132
132
|
--------
|
|
133
|
-
|
|
133
|
+
|
|
134
|
+
*eclair* is primarily distributed under the terms of the [MIT License].
|
|
134
135
|
|
|
135
136
|
[RubyGems]: https://rubygems.org/gems/ecl
|
|
136
137
|
[RubyGems total downloads]: https://badgen.net/rubygems/dt/ecl
|
|
137
138
|
[A video showing how Eclair works]: out.gif
|
|
138
139
|
[EC2::Client#describe_images]: https://docs.aws.amazon.com/AWSRubySDK/latest/AWS/EC2/Client.html#describe_images-instance_method
|
|
139
140
|
[EC2::Client#describe_instances]: https://docs.aws.amazon.com/AWSRubySDK/latest/AWS/EC2/Client.html#describe_instances-instance_method
|
|
140
|
-
[MIT License]:
|
|
141
|
+
[MIT License]: LICENSE
|
data/eclair.gemspec
CHANGED
|
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.require_paths = ["lib"]
|
|
22
22
|
|
|
23
23
|
spec.add_development_dependency "bundler", "~> 2.0"
|
|
24
|
-
spec.add_development_dependency "rake", "~>
|
|
24
|
+
spec.add_development_dependency "rake", "~> 13.0"
|
|
25
25
|
|
|
26
26
|
spec.add_runtime_dependency "aws-sdk-ec2", "~> 1.18"
|
|
27
27
|
spec.add_runtime_dependency "curses", "~> 1.0"
|
data/lib/eclair/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ecl
|
|
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
|
- Devsisters
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-11-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '13.0'
|
|
34
34
|
type: :development
|
|
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: '
|
|
40
|
+
version: '13.0'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: aws-sdk-ec2
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -133,7 +133,7 @@ files:
|
|
|
133
133
|
- ".gitignore"
|
|
134
134
|
- Gemfile
|
|
135
135
|
- Gemfile.lock
|
|
136
|
-
- LICENSE
|
|
136
|
+
- LICENSE
|
|
137
137
|
- README.md
|
|
138
138
|
- Rakefile
|
|
139
139
|
- bin/setup
|
|
@@ -181,7 +181,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
181
181
|
- !ruby/object:Gem::Version
|
|
182
182
|
version: '0'
|
|
183
183
|
requirements: []
|
|
184
|
-
rubygems_version: 3.0.
|
|
184
|
+
rubygems_version: 3.0.6
|
|
185
185
|
signing_key:
|
|
186
186
|
specification_version: 4
|
|
187
187
|
summary: EC2 ssh helper
|