conoha 0.0.2 → 0.0.3
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 +5 -0
- data/exe/conoha +20 -0
- data/lib/conoha/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3c3bff62b16038c252d30ce45c736c1061c1719d
|
|
4
|
+
data.tar.gz: 727b5598db464f6df0087808eeaf68b19fe0914b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f5a6784681c0674acea5195059ef3fa4efee3baca61df7919c145f701b19d2e63b4efea9fd702521cbcc0fa09352ffaca7c8cefc98749dc3f0f48f5924a273e
|
|
7
|
+
data.tar.gz: 639d502c22ee9d090f66a0dfb68f252752ec06cd3dedcf9c12ec2c3491d089ae2daa8e58739ec43b317273b434e0a9c6043c96401a6635f569f4a4dcee2d10d3
|
data/README.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# ConoHa VPS CLI Tool
|
|
2
2
|
|
|
3
|
+
[](http://badge.fury.io/rb/conoha)
|
|
4
|
+
[](https://gemnasium.com/kaosf/conoha)
|
|
5
|
+
[](https://travis-ci.org/kaosf/conoha)
|
|
6
|
+
[](https://codeclimate.com/github/kaosf/conoha)
|
|
7
|
+
|
|
3
8
|
CLI tool for management ConoHa VPS.
|
|
4
9
|
|
|
5
10
|
[ConoHa VPS](https://www.conoha.jp/en)
|
data/exe/conoha
CHANGED
|
@@ -51,6 +51,26 @@ when 'createfromimage'
|
|
|
51
51
|
image_ref = ARGV[0]
|
|
52
52
|
ram = ARGV[1]
|
|
53
53
|
puts Conoha.create_from_image image_ref, ram
|
|
54
|
+
when 'ssh'
|
|
55
|
+
exit 1 if ARGV.size < 1 || 2 < ARGV.size
|
|
56
|
+
ipaddress = Conoha.ip_address_of(server_id(ARGV.first))[1]
|
|
57
|
+
user = ARGV[1].nil? ? '' : "#{ARGV[1]}@"
|
|
58
|
+
command = "ssh -oStrictHostKeyChecking=no #{user}#{ipaddress}"
|
|
59
|
+
puts command
|
|
60
|
+
system command
|
|
61
|
+
when 'mosh'
|
|
62
|
+
exit 1 if ARGV.size != 1
|
|
63
|
+
ipaddress = Conoha.ip_address_of(server_id(ARGV.first))[1]
|
|
64
|
+
command = "mosh #{ipaddress}"
|
|
65
|
+
puts command
|
|
66
|
+
system command
|
|
67
|
+
when 'browse'
|
|
68
|
+
exit 1 if ARGV.size < 1 || 2 < ARGV.size
|
|
69
|
+
ipaddress = Conoha.ip_address_of(server_id(ARGV.first))[1]
|
|
70
|
+
port = ARGV[1].nil? ? '' : ":#{ARGV[1]}"
|
|
71
|
+
command = "xdg-open http://#{ipaddress}#{port}"
|
|
72
|
+
puts command
|
|
73
|
+
system command
|
|
54
74
|
else
|
|
55
75
|
STDERR.puts 'Error'
|
|
56
76
|
end
|
data/lib/conoha/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: conoha
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ka
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-09-
|
|
11
|
+
date: 2015-09-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|