forked from rsalvado/ec2ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathanveo-ec2ssh.gemspec
78 lines (73 loc) · 3.01 KB
/
anveo-ec2ssh.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "anveo-ec2ssh"
s.version = "0.2.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Ramon Salvad\u{f3}", "Brian Racer"]
s.date = "2012-07-02"
s.description = "Since ec2 instance public hostnames are dynamic, and not easy to remember or type, this script provides a list all your running instances so you can select the one you want to ssh into easily (without having to pass the aws console ritual each time you need the hostname)."
s.email = "bracer@gmail.com"
s.executables = ["ec2ssh"]
s.extra_rdoc_files = [
"LICENSE.txt",
"README.rdoc"
]
s.files = [
".document",
"Gemfile",
"Gemfile.lock",
"LICENSE.txt",
"README.rdoc",
"Rakefile",
"VERSION",
"anveo-ec2ssh.gemspec",
"bin/ec2ssh",
"lib/ec2ssh.rb",
"lib/templates/ec2ssh_config_sample.yaml"
]
s.homepage = "http://github.com/anveo/ec2ssh"
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "1.8.11"
s.summary = "A script to make it easier to ssh into running amazon EC2 instances."
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<aws>, [">= 2.5.6"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<colorize>, ["= 0.5.8"])
s.add_runtime_dependency(%q<highline>, [">= 1.6.8"])
s.add_runtime_dependency(%q<text-table>, ["= 1.2.2"])
s.add_runtime_dependency(%q<aws>, [">= 2.5.6"])
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_runtime_dependency(%q<colorize>, ["= 0.5.8"])
s.add_runtime_dependency(%q<highline>, [">= 1.6.8"])
s.add_runtime_dependency(%q<text-table>, ["~> 1.2.2"])
else
s.add_dependency(%q<aws>, [">= 2.5.6"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_dependency(%q<colorize>, ["= 0.5.8"])
s.add_dependency(%q<highline>, [">= 1.6.8"])
s.add_dependency(%q<text-table>, ["= 1.2.2"])
s.add_dependency(%q<aws>, [">= 2.5.6"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_dependency(%q<colorize>, ["= 0.5.8"])
s.add_dependency(%q<highline>, [">= 1.6.8"])
s.add_dependency(%q<text-table>, ["~> 1.2.2"])
end
else
s.add_dependency(%q<aws>, [">= 2.5.6"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_dependency(%q<colorize>, ["= 0.5.8"])
s.add_dependency(%q<highline>, [">= 1.6.8"])
s.add_dependency(%q<text-table>, ["= 1.2.2"])
s.add_dependency(%q<aws>, [">= 2.5.6"])
s.add_dependency(%q<activesupport>, ["~> 3.0.0"])
s.add_dependency(%q<colorize>, ["= 0.5.8"])
s.add_dependency(%q<highline>, [">= 1.6.8"])
s.add_dependency(%q<text-table>, ["~> 1.2.2"])
end
end