right_chimp 1.1.3 → 2.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.
- data/.gitignore +1 -0
- data/CHANGES +4 -0
- data/Gemfile +0 -1
- data/Gemfile.lock +2 -22
- data/README +25 -47
- data/chimp.gemspec +4 -4
- data/lib/right_chimp/Chimp.rb +498 -317
- data/lib/right_chimp/Log.rb +7 -4
- data/lib/right_chimp/daemon/ChimpDaemon.rb +75 -10
- data/lib/right_chimp/daemon/ChimpDaemonClient.rb +16 -8
- data/lib/right_chimp/exec/ExecReport.rb +14 -20
- data/lib/right_chimp/exec/ExecRightScript.rb +7 -6
- data/lib/right_chimp/exec/ExecSSH.rb +4 -9
- data/lib/right_chimp/exec/Executor.rb +7 -5
- data/lib/right_chimp/objects/ChimpObjects.rb +393 -0
- data/lib/right_chimp/queue/ChimpQueue.rb +32 -32
- data/lib/right_chimp/queue/ExecutionGroup.rb +3 -8
- data/lib/right_chimp/queue/QueueWorker.rb +0 -4
- data/lib/right_chimp/templates/all_jobs.erb +4 -4
- data/lib/right_chimp/version.rb +1 -1
- data/lib/right_chimp.rb +11 -2
- metadata +9 -38
metadata
CHANGED
@@ -1,48 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: right_chimp
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: '2.0'
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
-
|
8
|
+
- RightScale Operations
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-04-23 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: rest_connection
|
16
|
-
requirement: !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: 1.0.10
|
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: 1.0.10
|
30
|
-
- !ruby/object:Gem::Dependency
|
31
|
-
name: rest-client
|
32
|
-
requirement: !ruby/object:Gem::Requirement
|
33
|
-
none: false
|
34
|
-
requirements:
|
35
|
-
- - ~>
|
36
|
-
- !ruby/object:Gem::Version
|
37
|
-
version: 1.6.7
|
38
|
-
type: :runtime
|
39
|
-
prerelease: false
|
40
|
-
version_requirements: !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
version: 1.6.7
|
46
14
|
- !ruby/object:Gem::Dependency
|
47
15
|
name: rake
|
48
16
|
requirement: !ruby/object:Gem::Requirement
|
@@ -109,13 +77,14 @@ dependencies:
|
|
109
77
|
version: 2.6.0
|
110
78
|
description: The Chimp is a tool for managing servers using the RightScale platform.
|
111
79
|
email:
|
112
|
-
-
|
80
|
+
- ops@rightscale.com
|
113
81
|
executables:
|
114
82
|
- chimp
|
115
83
|
- chimpd
|
116
84
|
extensions: []
|
117
85
|
extra_rdoc_files: []
|
118
86
|
files:
|
87
|
+
- .gitignore
|
119
88
|
- CHANGES
|
120
89
|
- Gemfile
|
121
90
|
- Gemfile.lock
|
@@ -139,6 +108,7 @@ files:
|
|
139
108
|
- lib/right_chimp/exec/ExecRightScript.rb
|
140
109
|
- lib/right_chimp/exec/ExecSSH.rb
|
141
110
|
- lib/right_chimp/exec/Executor.rb
|
111
|
+
- lib/right_chimp/objects/ChimpObjects.rb
|
142
112
|
- lib/right_chimp/queue/ChimpQueue.rb
|
143
113
|
- lib/right_chimp/queue/ExecutionGroup.rb
|
144
114
|
- lib/right_chimp/queue/QueueWorker.rb
|
@@ -158,7 +128,8 @@ files:
|
|
158
128
|
- spec/spec_queue_worker.rb
|
159
129
|
- spec/spec_selection.rb
|
160
130
|
homepage: https://github.com/rightscale/right_chimp
|
161
|
-
licenses:
|
131
|
+
licenses:
|
132
|
+
- MIT
|
162
133
|
post_install_message:
|
163
134
|
rdoc_options: []
|
164
135
|
require_paths:
|
@@ -177,7 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
177
148
|
version: '0'
|
178
149
|
requirements: []
|
179
150
|
rubyforge_project:
|
180
|
-
rubygems_version: 1.8.23
|
151
|
+
rubygems_version: 1.8.23.2
|
181
152
|
signing_key:
|
182
153
|
specification_version: 3
|
183
154
|
summary: RightScale platform command-line tool
|