jossh 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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -4
  3. data/bin/jossh +3 -3
  4. data/lib/jossh/version.rb +1 -1
  5. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ae6b17ea42779bad1f8ba891969a8ff6aba3b4a3
4
- data.tar.gz: 5550c9b4bb4a1b26396befaddb9baab2aaecfb31
3
+ metadata.gz: e21292d5cf9f6a4a812cb4b32950e56516b17ca5
4
+ data.tar.gz: 00c4ebc56ab4240f035ced04b1ccbd4917ad0a1d
5
5
  SHA512:
6
- metadata.gz: 7aca02debcfdf336894b3efe1c1178aea44ec455ebce3332208018ea7fdde7be8d9445cf0159c7c9457d006fac51acccc680f9d057a1d2235c554d414de5a371
7
- data.tar.gz: 98dd31bb03b543c68368a64f740855ab74e3988d0210e163d4de7bd214107ed6348cb2bb09d49bbe3dfa2bfa3b0cf3c92f3bbe858b98b0a64a180100bf54c069
6
+ metadata.gz: 3415b4accc2faf4d0bcadb7de6c570fadbd3e52376bcb8e14e30dc72b8200836576c0e846334ba2acdc52990e3d87cb656a76e9029a0ed7353c32788c1a367f8
7
+ data.tar.gz: 4a3e0f6b97c859f070d0840f7b62e3348b2d3b7fb000ad372a32a7ee6a142a48149a97fcc80fcfe054a62171c665776f280f343771e8294df6511993d6c76e89
data/README.md CHANGED
@@ -6,7 +6,10 @@ Jossh - Your SSH Buddy
6
6
  [![Dependency Status](https://gemnasium.com/DannyBen/jossh.svg)](https://gemnasium.com/DannyBen/jossh)
7
7
 
8
8
 
9
- Ruby SSH functions for easier and prettier remote deployment and automation.
9
+ **Jossh** is
10
+
11
+ - a command line utility for running local scripts and comments over SSH.
12
+ - a ruby library for easier and prettier SSH deployment and automation.
10
13
 
11
14
  ## Install
12
15
 
@@ -46,9 +49,9 @@ Usage: jossh <host> <script>
46
49
  quotes are only needed if you include multiple commands
47
50
  with && or semicolor (;)
48
51
 
49
- Examples: jossh localhost git status
50
- jossh localhost "cd ~ && ls -l"
51
- jossh localhost deploy
52
+ Examples: jossh production git status
53
+ jossh stage "cd ~ && ls -l"
54
+ jossh devhost deploy
52
55
  ```
53
56
 
54
57
  ## Library Usage
data/bin/jossh CHANGED
@@ -13,9 +13,9 @@ def usage
13
13
  " <script> - can be either a filename or one or more direct command\n" +
14
14
  " quotes are only needed if you include multiple commands\n" +
15
15
  " with && or semicolor (;)\n\n" +
16
- "Examples: jossh localhost git status\n" +
17
- " jossh localhost \"cd ~ && ls -l\"\n" +
18
- " jossh localhost deploy"
16
+ "Examples: jossh production git status\n" +
17
+ " jossh stage \"cd ~ && ls -l\"\n" +
18
+ " jossh devhost deploy"
19
19
  end
20
20
 
21
21
  def run
data/lib/jossh/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Jossh
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jossh
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danny Ben Shitrit
@@ -107,7 +107,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
107
107
  requirements:
108
108
  - - ">="
109
109
  - !ruby/object:Gem::Version
110
- version: '0'
110
+ version: '2.0'
111
111
  required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  requirements:
113
113
  - - ">="
@@ -118,5 +118,5 @@ rubyforge_project:
118
118
  rubygems_version: 2.4.6
119
119
  signing_key:
120
120
  specification_version: 4
121
- summary: Easier and Prettier SSH for Ruby
121
+ summary: Easier and Prettier SSH for Ruby (CLI + Library)
122
122
  test_files: []