rsh 1.0.0 → 1.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.
- data/CHANGELOG.rdoc +18 -3
- data/Rakefile +3 -4
- data/VERSION +1 -1
- data/rsh.gemspec +7 -8
- metadata +8 -10
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
[4574ec6 | Tue Nov 02 18:03:03 UTC 2010] Pavel Argentov <argentoff@gmail.com>
|
|
2
|
+
|
|
3
|
+
* Some minor documentation fixes
|
|
4
|
+
|
|
5
|
+
[179c3f6 | Tue Nov 02 18:02:17 UTC 2010] Pavel Argentov <argentoff@gmail.com>
|
|
6
|
+
|
|
7
|
+
* Version bump to 1.0.1
|
|
8
|
+
|
|
9
|
+
[44774b2 | Sun Oct 31 09:16:40 UTC 2010] Pavel Argentov <argentoff@gmail.com>
|
|
10
|
+
|
|
11
|
+
* CHANGELOG regenerated
|
|
12
|
+
|
|
13
|
+
CHANGELOG regenerated according to 1.0.0 final commit
|
|
14
|
+
|
|
1
15
|
[f5ac480 | Sun Oct 31 09:12:03 UTC 2010] Pavel Argentov <argentoff@gmail.com>
|
|
2
16
|
|
|
3
17
|
* Version 1.0.0 feature freeze
|
|
@@ -31,9 +45,10 @@
|
|
|
31
45
|
|
|
32
46
|
* First byte experiment
|
|
33
47
|
|
|
34
|
-
Try to throw away first byte of server's output
|
|
35
|
-
signalling char [ref?]); also made the
|
|
36
|
-
again since :ruby_impl can change
|
|
48
|
+
Try to throw away first byte of server's output
|
|
49
|
+
(it seems to be kinda signalling char [ref?]); also made the
|
|
50
|
+
lookup of rsh binary mandatory again since :ruby_impl can change
|
|
51
|
+
during the Rsh instance's lifetime.
|
|
37
52
|
|
|
38
53
|
[1ff74ab | Sun Oct 31 06:43:19 UTC 2010] Pavel Argentov <argentoff@gmail.com>
|
|
39
54
|
|
data/Rakefile
CHANGED
|
@@ -6,11 +6,10 @@ begin
|
|
|
6
6
|
require 'jeweler'
|
|
7
7
|
Jeweler::Tasks.new do |gem|
|
|
8
8
|
gem.name = "rsh"
|
|
9
|
-
gem.summary = %Q{
|
|
10
|
-
gem.description = %Q{
|
|
11
|
-
Here's the gem wrapping call to this command and handling the command's result/output.}
|
|
9
|
+
gem.summary = %Q{BSD remote shell (RFC-1282) protocol client for ruby}
|
|
10
|
+
gem.description = %Q{BSD rsh(1) cli program wrapper; pure ruby remote shell client implementation.}
|
|
12
11
|
gem.email = "argentoff@gmail.com"
|
|
13
|
-
gem.homepage = "http://github.com/
|
|
12
|
+
gem.homepage = "http://argent-smith.github.com/rsh"
|
|
14
13
|
gem.authors = ["Pavel Argentov"]
|
|
15
14
|
gem.add_development_dependency "rspec", ">= 1.2.9"
|
|
16
15
|
gem.extra_rdoc_files = [
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/rsh.gemspec
CHANGED
|
@@ -5,13 +5,12 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{rsh}
|
|
8
|
-
s.version = "1.0.
|
|
8
|
+
s.version = "1.0.1"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Pavel Argentov"]
|
|
12
|
-
s.date = %q{2010-
|
|
13
|
-
s.description = %q{
|
|
14
|
-
Here's the gem wrapping call to this command and handling the command's result/output.}
|
|
12
|
+
s.date = %q{2010-11-02}
|
|
13
|
+
s.description = %q{BSD rsh(1) cli program wrapper; pure ruby remote shell client implementation.}
|
|
15
14
|
s.email = %q{argentoff@gmail.com}
|
|
16
15
|
s.extra_rdoc_files = [
|
|
17
16
|
"CHANGELOG.rdoc",
|
|
@@ -32,14 +31,14 @@ Gem::Specification.new do |s|
|
|
|
32
31
|
"spec/spec.opts",
|
|
33
32
|
"spec/spec_helper.rb"
|
|
34
33
|
]
|
|
35
|
-
s.homepage = %q{http://github.com/
|
|
34
|
+
s.homepage = %q{http://argent-smith.github.com/rsh}
|
|
36
35
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
37
36
|
s.require_paths = ["lib"]
|
|
38
37
|
s.rubygems_version = %q{1.3.7}
|
|
39
|
-
s.summary = %q{
|
|
38
|
+
s.summary = %q{BSD remote shell (RFC-1282) protocol client for ruby}
|
|
40
39
|
s.test_files = [
|
|
41
|
-
"spec/
|
|
42
|
-
"spec/
|
|
40
|
+
"spec/rsh_spec.rb",
|
|
41
|
+
"spec/spec_helper.rb"
|
|
43
42
|
]
|
|
44
43
|
|
|
45
44
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rsh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 21
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 1
|
|
8
8
|
- 0
|
|
9
|
-
-
|
|
10
|
-
version: 1.0.
|
|
9
|
+
- 1
|
|
10
|
+
version: 1.0.1
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Pavel Argentov
|
|
@@ -15,7 +15,7 @@ autorequire:
|
|
|
15
15
|
bindir: bin
|
|
16
16
|
cert_chain: []
|
|
17
17
|
|
|
18
|
-
date: 2010-
|
|
18
|
+
date: 2010-11-02 00:00:00 +03:00
|
|
19
19
|
default_executable:
|
|
20
20
|
dependencies:
|
|
21
21
|
- !ruby/object:Gem::Dependency
|
|
@@ -34,9 +34,7 @@ dependencies:
|
|
|
34
34
|
version: 1.2.9
|
|
35
35
|
type: :development
|
|
36
36
|
version_requirements: *id001
|
|
37
|
-
description:
|
|
38
|
-
All freenixes (e.g. Linux, *BSD, etc.) have 'rsh' command.
|
|
39
|
-
Here's the gem wrapping call to this command and handling the command's result/output.
|
|
37
|
+
description: BSD rsh(1) cli program wrapper; pure ruby remote shell client implementation.
|
|
40
38
|
email: argentoff@gmail.com
|
|
41
39
|
executables: []
|
|
42
40
|
|
|
@@ -60,7 +58,7 @@ files:
|
|
|
60
58
|
- spec/spec.opts
|
|
61
59
|
- spec/spec_helper.rb
|
|
62
60
|
has_rdoc: true
|
|
63
|
-
homepage: http://github.com/
|
|
61
|
+
homepage: http://argent-smith.github.com/rsh
|
|
64
62
|
licenses: []
|
|
65
63
|
|
|
66
64
|
post_install_message:
|
|
@@ -92,7 +90,7 @@ rubyforge_project:
|
|
|
92
90
|
rubygems_version: 1.3.7
|
|
93
91
|
signing_key:
|
|
94
92
|
specification_version: 3
|
|
95
|
-
summary:
|
|
93
|
+
summary: BSD remote shell (RFC-1282) protocol client for ruby
|
|
96
94
|
test_files:
|
|
97
|
-
- spec/spec_helper.rb
|
|
98
95
|
- spec/rsh_spec.rb
|
|
96
|
+
- spec/spec_helper.rb
|