forked from benburkert/rush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rush.gemspec
113 lines (108 loc) · 3.24 KB
/
rush.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{rush}
s.version = "0.6.6"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Adam Wiggins"]
s.date = %q{2010-01-29}
s.description = %q{A Ruby replacement for bash+ssh, providing both an interactive shell and a library. Manage both local and remote unix systems from a single client.}
s.email = %q{[email protected]}
s.executables = ["rush", "rushd"]
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"README.rdoc",
"Rakefile",
"VERSION",
"bin/rush",
"bin/rushd",
"lib/rush.rb",
"lib/rush/access.rb",
"lib/rush/array_ext.rb",
"lib/rush/box.rb",
"lib/rush/commands.rb",
"lib/rush/config.rb",
"lib/rush/dir.rb",
"lib/rush/embeddable_shell.rb",
"lib/rush/entry.rb",
"lib/rush/exceptions.rb",
"lib/rush/file.rb",
"lib/rush/find_by.rb",
"lib/rush/fixnum_ext.rb",
"lib/rush/head_tail.rb",
"lib/rush/local.rb",
"lib/rush/process.rb",
"lib/rush/process_set.rb",
"lib/rush/remote.rb",
"lib/rush/search_results.rb",
"lib/rush/server.rb",
"lib/rush/shell.rb",
"lib/rush/ssh_tunnel.rb",
"lib/rush/string_ext.rb",
"spec/access_spec.rb",
"spec/array_ext_spec.rb",
"spec/base.rb",
"spec/box_spec.rb",
"spec/commands_spec.rb",
"spec/config_spec.rb",
"spec/dir_spec.rb",
"spec/embeddable_shell_spec.rb",
"spec/entry_spec.rb",
"spec/file_spec.rb",
"spec/find_by_spec.rb",
"spec/fixnum_ext_spec.rb",
"spec/local_spec.rb",
"spec/process_set_spec.rb",
"spec/process_spec.rb",
"spec/remote_spec.rb",
"spec/rush_spec.rb",
"spec/search_results_spec.rb",
"spec/shell_spec.rb",
"spec/ssh_tunnel_spec.rb",
"spec/string_ext_spec.rb"
]
s.homepage = %q{http://rush.heroku.com/}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{ruby-shell}
s.rubygems_version = %q{1.3.5}
s.summary = %q{A Ruby replacement for bash+ssh.}
s.test_files = [
"spec/access_spec.rb",
"spec/array_ext_spec.rb",
"spec/base.rb",
"spec/box_spec.rb",
"spec/commands_spec.rb",
"spec/config_spec.rb",
"spec/dir_spec.rb",
"spec/embeddable_shell_spec.rb",
"spec/entry_spec.rb",
"spec/file_spec.rb",
"spec/find_by_spec.rb",
"spec/fixnum_ext_spec.rb",
"spec/local_spec.rb",
"spec/process_set_spec.rb",
"spec/process_spec.rb",
"spec/remote_spec.rb",
"spec/rush_spec.rb",
"spec/search_results_spec.rb",
"spec/shell_spec.rb",
"spec/ssh_tunnel_spec.rb",
"spec/string_ext_spec.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<session>, [">= 0"])
else
s.add_dependency(%q<session>, [">= 0"])
end
else
s.add_dependency(%q<session>, [">= 0"])
end
end