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.
- checksums.yaml +4 -4
- data/README.md +7 -4
- data/bin/jossh +3 -3
- data/lib/jossh/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e21292d5cf9f6a4a812cb4b32950e56516b17ca5
|
|
4
|
+
data.tar.gz: 00c4ebc56ab4240f035ced04b1ccbd4917ad0a1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3415b4accc2faf4d0bcadb7de6c570fadbd3e52376bcb8e14e30dc72b8200836576c0e846334ba2acdc52990e3d87cb656a76e9029a0ed7353c32788c1a367f8
|
|
7
|
+
data.tar.gz: 4a3e0f6b97c859f070d0840f7b62e3348b2d3b7fb000ad372a32a7ee6a142a48149a97fcc80fcfe054a62171c665776f280f343771e8294df6511993d6c76e89
|
data/README.md
CHANGED
|
@@ -6,7 +6,10 @@ Jossh - Your SSH Buddy
|
|
|
6
6
|
[](https://gemnasium.com/DannyBen/jossh)
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
|
|
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
|
|
50
|
-
jossh
|
|
51
|
-
jossh
|
|
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
|
|
17
|
-
" jossh
|
|
18
|
-
" jossh
|
|
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
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.
|
|
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: []
|