right_agent 0.6.1 → 0.6.2
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.
|
@@ -41,7 +41,7 @@ module RightScale
|
|
|
41
41
|
# Regular expression to define what a valid thread name looks like: an alpha character
|
|
42
42
|
# followed by 0 or more alphanumerics or underscores. Only lower-case characters are
|
|
43
43
|
# allowed.
|
|
44
|
-
VALID_THREAD_NAME =
|
|
44
|
+
VALID_THREAD_NAME = /^[a-z][a-z0-9_]*$/
|
|
45
45
|
|
|
46
46
|
# (Array) Collection of RightScripts and chef recipes instantiations
|
|
47
47
|
attr_accessor :executables
|
data/right_agent.gemspec
CHANGED
|
@@ -24,7 +24,7 @@ require 'rubygems'
|
|
|
24
24
|
|
|
25
25
|
Gem::Specification.new do |spec|
|
|
26
26
|
spec.name = 'right_agent'
|
|
27
|
-
spec.version = '0.6.
|
|
27
|
+
spec.version = '0.6.2'
|
|
28
28
|
spec.authors = ['Lee Kirchhoff', 'Raphael Simon', 'Tony Spataro']
|
|
29
29
|
spec.email = 'lee@rightscale.com'
|
|
30
30
|
spec.homepage = 'https://github.com/rightscale/right_agent'
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: right_agent
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 3
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 6
|
|
9
|
-
-
|
|
10
|
-
version: 0.6.
|
|
9
|
+
- 2
|
|
10
|
+
version: 0.6.2
|
|
11
11
|
platform: ruby
|
|
12
12
|
authors:
|
|
13
13
|
- Lee Kirchhoff
|
|
@@ -17,7 +17,7 @@ autorequire:
|
|
|
17
17
|
bindir: bin
|
|
18
18
|
cert_chain: []
|
|
19
19
|
|
|
20
|
-
date: 2011-11-
|
|
20
|
+
date: 2011-11-16 00:00:00 -08:00
|
|
21
21
|
default_executable:
|
|
22
22
|
dependencies:
|
|
23
23
|
- !ruby/object:Gem::Dependency
|