right_chimp 1.0

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.
metadata ADDED
@@ -0,0 +1,159 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: right_chimp
3
+ version: !ruby/object:Gem::Version
4
+ version: '1.0'
5
+ platform: ruby
6
+ authors:
7
+ - Christopher Deutsch
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-04-24 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: progressbar
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.11.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.11.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: rest-client
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 1.6.7
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ~>
39
+ - !ruby/object:Gem::Version
40
+ version: 1.6.7
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: 0.9.2.2
48
+ type: :runtime
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: 0.9.2.2
55
+ - !ruby/object:Gem::Dependency
56
+ name: rest_connection
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 1.0.6
62
+ type: :runtime
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 1.0.6
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ~>
74
+ - !ruby/object:Gem::Version
75
+ version: 2.6.0
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ~>
81
+ - !ruby/object:Gem::Version
82
+ version: 2.6.0
83
+ description: The Chimp is a tool for managing servers using the RightScale platform.
84
+ email:
85
+ - christopher@rightscale.com
86
+ executables:
87
+ - chimp
88
+ - chimpd
89
+ extensions: []
90
+ extra_rdoc_files: []
91
+ files:
92
+ - CHANGES
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - INSTALL
96
+ - LICENSE
97
+ - README
98
+ - Rakefile
99
+ - bin/chimp
100
+ - bin/chimpd
101
+ - chimp.gemspec
102
+ - lib/right_chimp.rb
103
+ - lib/right_chimp/Chimp.rb
104
+ - lib/right_chimp/IDManager.rb
105
+ - lib/right_chimp/Log.rb
106
+ - lib/right_chimp/daemon/ChimpDaemon.rb
107
+ - lib/right_chimp/daemon/ChimpDaemonClient.rb
108
+ - lib/right_chimp/exec/ExecArray.rb
109
+ - lib/right_chimp/exec/ExecCallback.rb
110
+ - lib/right_chimp/exec/ExecNoop.rb
111
+ - lib/right_chimp/exec/ExecReport.rb
112
+ - lib/right_chimp/exec/ExecRightScript.rb
113
+ - lib/right_chimp/exec/ExecSSH.rb
114
+ - lib/right_chimp/exec/Executor.rb
115
+ - lib/right_chimp/queue/ChimpQueue.rb
116
+ - lib/right_chimp/queue/ExecutionGroup.rb
117
+ - lib/right_chimp/queue/QueueWorker.rb
118
+ - lib/right_chimp/templates/all_jobs.erb
119
+ - lib/right_chimp/version.rb
120
+ - spec/spec_chimp.rb
121
+ - spec/spec_chimp_commandline.rb
122
+ - spec/spec_chimpd.rb
123
+ - spec/spec_chimpd_client.rb
124
+ - spec/spec_execution_group.rb
125
+ - spec/spec_queue.rb
126
+ - spec/spec_queue_worker.rb
127
+ - spec/spec_selection.rb
128
+ homepage: https://github.com/rightscale/right_chimp
129
+ licenses: []
130
+ metadata: {}
131
+ post_install_message:
132
+ rdoc_options: []
133
+ require_paths:
134
+ - lib
135
+ required_ruby_version: !ruby/object:Gem::Requirement
136
+ requirements:
137
+ - - '>='
138
+ - !ruby/object:Gem::Version
139
+ version: '0'
140
+ required_rubygems_version: !ruby/object:Gem::Requirement
141
+ requirements:
142
+ - - '>='
143
+ - !ruby/object:Gem::Version
144
+ version: '0'
145
+ requirements: []
146
+ rubyforge_project:
147
+ rubygems_version: 2.0.3
148
+ signing_key:
149
+ specification_version: 4
150
+ summary: RightScale platform command-line tool
151
+ test_files:
152
+ - spec/spec_chimp.rb
153
+ - spec/spec_chimp_commandline.rb
154
+ - spec/spec_chimpd.rb
155
+ - spec/spec_chimpd_client.rb
156
+ - spec/spec_execution_group.rb
157
+ - spec/spec_queue.rb
158
+ - spec/spec_queue_worker.rb
159
+ - spec/spec_selection.rb