hostmanager 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.
Files changed (5) hide show
  1. data/README.md +21 -3
  2. data/README.md.orig +4 -0
  3. data/VERSION +1 -1
  4. data/hostmanager.gemspec +66 -0
  5. metadata +5 -2
data/README.md CHANGED
@@ -1,4 +1,22 @@
1
- hostmanager
2
- ===========
1
+ = Hostmanager
2
+
3
+ == Summary
4
+
5
+ A class and command line utility that allows simple management of ssh hosts and remote folders. E.g. logging in to a remote server becomes as easy as 'hm l y'.
6
+
7
+ == Examples
8
+
9
+ hm add m myname@myhost
10
+ hm x m
11
+ hm list
12
+ hm scp m:my_file h:.
13
+
14
+ == Command Manual
15
+
16
+ === Commands
17
+
18
+ hm add <letter> myname@myhost.com --- Add a host to be referred to with <letter>
19
+ hm list -- List all hosts
20
+ hm x <letter>
21
+
3
22
 
4
- A class and command line utility that allows simple management of ssh hosts and remote folders. E.g. logging in to a remote server becomes as easy as 'hm l y'.
data/README.md.orig ADDED
@@ -0,0 +1,4 @@
1
+ hostmanager
2
+ ===========
3
+
4
+ A class and command line utility that allows simple management of ssh hosts and remote folders. E.g. logging in to a remote server becomes as easy as 'hm l y'.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -0,0 +1,66 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "hostmanager"
8
+ s.version = "1.0.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Edmund Highcock"]
12
+ s.date = "2012-10-09"
13
+ s.description = "A class and command line utility that allows simple management of ssh hosts and remote folders. E.g. logging in to a remote server becomes as easy as 'hm l y'."
14
+ s.email = "github@edmundhighcock.com"
15
+ s.executables = ["hm"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt",
18
+ "README.md",
19
+ "README.md.orig",
20
+ "README.rdoc"
21
+ ]
22
+ s.files = [
23
+ ".document",
24
+ "Gemfile",
25
+ "LICENSE.txt",
26
+ "README.md",
27
+ "README.rdoc",
28
+ "Rakefile",
29
+ "VERSION",
30
+ "bin/hm",
31
+ "hostmanager.gemspec",
32
+ "lib/hostmanager.rb",
33
+ "test/helper.rb",
34
+ "test/test_hostmanager.rb"
35
+ ]
36
+ s.homepage = "http://github.com/edmundhighcock/hostmanager"
37
+ s.licenses = ["GPLv3"]
38
+ s.require_paths = ["lib"]
39
+ s.rubygems_version = "1.8.24"
40
+ s.summary = "Simple class/command line utility for management of remote hosts."
41
+
42
+ if s.respond_to? :specification_version then
43
+ s.specification_version = 3
44
+
45
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
46
+ s.add_runtime_dependency(%q<rubyhacks>, [">= 0.1.0"])
47
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
48
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
49
+ s.add_development_dependency(%q<bundler>, ["> 1.0.0"])
50
+ s.add_development_dependency(%q<jeweler>, [">= 1.8.4"])
51
+ else
52
+ s.add_dependency(%q<rubyhacks>, [">= 0.1.0"])
53
+ s.add_dependency(%q<shoulda>, [">= 0"])
54
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
55
+ s.add_dependency(%q<bundler>, ["> 1.0.0"])
56
+ s.add_dependency(%q<jeweler>, [">= 1.8.4"])
57
+ end
58
+ else
59
+ s.add_dependency(%q<rubyhacks>, [">= 0.1.0"])
60
+ s.add_dependency(%q<shoulda>, [">= 0"])
61
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
62
+ s.add_dependency(%q<bundler>, ["> 1.0.0"])
63
+ s.add_dependency(%q<jeweler>, [">= 1.8.4"])
64
+ end
65
+ end
66
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hostmanager
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -101,6 +101,7 @@ extensions: []
101
101
  extra_rdoc_files:
102
102
  - LICENSE.txt
103
103
  - README.md
104
+ - README.md.orig
104
105
  - README.rdoc
105
106
  files:
106
107
  - .document
@@ -111,9 +112,11 @@ files:
111
112
  - Rakefile
112
113
  - VERSION
113
114
  - bin/hm
115
+ - hostmanager.gemspec
114
116
  - lib/hostmanager.rb
115
117
  - test/helper.rb
116
118
  - test/test_hostmanager.rb
119
+ - README.md.orig
117
120
  homepage: http://github.com/edmundhighcock/hostmanager
118
121
  licenses:
119
122
  - GPLv3
@@ -129,7 +132,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
129
132
  version: '0'
130
133
  segments:
131
134
  - 0
132
- hash: 1924187907608627768
135
+ hash: 3436697380726897342
133
136
  required_rubygems_version: !ruby/object:Gem::Requirement
134
137
  none: false
135
138
  requirements: