ender 0.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/LICENSE +19 -0
  2. data/ender.gemspec +26 -0
  3. data/lib/ender.rb +2 -0
  4. data/lib/ender/version.rb +3 -0
  5. metadata +67 -0
data/LICENSE ADDED
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2013 Jacques Fuentes
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
@@ -0,0 +1,26 @@
1
+ $LOAD_PATH.push File.expand_path '../lib', __FILE__
2
+
3
+ require 'ender/version'
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = "ender"
7
+ s.version = Ender::VERSION
8
+ s.authors = ["Jacques Fuentes"]
9
+ s.email = ["jpfuentes2@gmail.com"]
10
+ s.homepage = "http://github.com/jpfuentes2/ender"
11
+ s.license = "MIT"
12
+ s.summary = "Multi-server SSH prompt"
13
+ s.description = "Execute commands against a multitude of remote servers via a local SSH prompt"
14
+ s.required_ruby_version = Gem::Requirement.new(">= 1.9.2")
15
+
16
+ s.files = Dir[
17
+ "LICENSE",
18
+ "README.md",
19
+ "lib/**/*.rb",
20
+ "*.gemspec",
21
+ "test/*.*"
22
+ ]
23
+ s.require_paths = %w{lib}
24
+
25
+ s.add_dependency "net-ssh-multi"
26
+ end
@@ -0,0 +1,2 @@
1
+ module Ender
2
+ end
@@ -0,0 +1,3 @@
1
+ module Ender
2
+ VERSION = "0.0.1"
3
+ end
metadata ADDED
@@ -0,0 +1,67 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ender
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Jacques Fuentes
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-03-01 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: net-ssh-multi
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ description: Execute commands against a multitude of remote servers via a local SSH
31
+ prompt
32
+ email:
33
+ - jpfuentes2@gmail.com
34
+ executables: []
35
+ extensions: []
36
+ extra_rdoc_files: []
37
+ files:
38
+ - LICENSE
39
+ - lib/ender/version.rb
40
+ - lib/ender.rb
41
+ - ender.gemspec
42
+ homepage: http://github.com/jpfuentes2/ender
43
+ licenses:
44
+ - MIT
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: 1.9.2
55
+ required_rubygems_version: !ruby/object:Gem::Requirement
56
+ none: false
57
+ requirements:
58
+ - - ! '>='
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ requirements: []
62
+ rubyforge_project:
63
+ rubygems_version: 1.8.23
64
+ signing_key:
65
+ specification_version: 3
66
+ summary: Multi-server SSH prompt
67
+ test_files: []