bastion-cli 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/bastion/version.rb +1 -1
  3. data/readme.md +11 -3
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4c5ce7d72a6f891e49e5195128676560a4f96c14
4
- data.tar.gz: 67a2d7fd1cd299e964a0f8a301e8b79f69963932
3
+ metadata.gz: 505043ca1ead0745375193bfd8d1674b528649fe
4
+ data.tar.gz: ee47e822be5493e581fa6031a83537fd5cdeed20
5
5
  SHA512:
6
- metadata.gz: c1327871ba8c300b1705fc85285d0446612eae383fa30d098becef56007e885f98a3ab418141caf88c9462bec764610086b8b17d337b070bf22a3eea9ab8223d
7
- data.tar.gz: 49db9c46b85ce82ae65422ccf0613ff6256592d6001ace013356fd77164b78624ccb73912f997a75f35d5e2b176e41185db06a824438f2fd82a1a2f165c588c7
6
+ metadata.gz: 0249d2db1e3a984644fc8eace9c409908b76b21c78bf84659a1fc2ef14e7af06379bdc6b6447ee805354f318f1acf8f97f563f8068813a58fd6f907ed57aa9ac
7
+ data.tar.gz: 5a2437c80a72811ed3d908ebee865d6e88c54606b79751bd904e47ff6806f2237762026d7e2492924fdb5ed6405bdf023c64bca03b866103d06053bf7c95283c
@@ -1,4 +1,4 @@
1
1
 
2
2
  module Bastion
3
- VERSION = "0.7.5"
3
+ VERSION = "0.7.6"
4
4
  end
data/readme.md CHANGED
@@ -1,10 +1,12 @@
1
1
  # bastion-cli
2
2
 
3
- Log into bastion hosts.
3
+ Log into things through bastion hosts.
4
+
4
5
 
5
6
  [![Build Status](https://travis-ci.org/ptdorf/bastion-cli.svg?branch=master)](https://travis-ci.org/ptdorf/bastion-cli)
6
7
  [![Gem Version](https://badge.fury.io/rb/bastion-cli.svg)](https://badge.fury.io/rb/bastion-cli)
7
8
 
9
+
8
10
  ## Installation
9
11
 
10
12
  ```shell
@@ -15,7 +17,13 @@ sudo gem install bastion-cli
15
17
 
16
18
  ```shell
17
19
  # To see all options
18
- bastion
20
+ $ bastion
21
+ Commands:
22
+ bastion help [COMMAND] # Describe available commands or one specific command
23
+ bastion host [HOST] # Show or set the default bastion host
24
+ bastion ssh [INSTANCE] # Logs into an instance
25
+ bastion tunnel [PORT] # Starts a new tunnel
26
+ bastion version # Shows current version
19
27
 
20
28
  # To log into an instance
21
29
  bastion ssh 10.1.2.3
@@ -42,7 +50,7 @@ bastion tunnel 1337 --host 12.34.56.78
42
50
  You can also set the `BASTION_HOST` environment variable with the address of the
43
51
  bastion host:
44
52
 
45
- BASTION_HOST=bastion.example.com bastion ssh web-01.example.com
53
+ BASTION_HOST=bastion.example.com bastion ssh web.example.com
46
54
 
47
55
  The pecking order is:
48
56
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bastion-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.5
4
+ version: 0.7.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - ptdorf