right_support 2.2.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
@@ -108,8 +108,8 @@ module RightSupport::Ruby
|
|
108
108
|
def pur; colorize("\e[1m\e[35m"); end
|
109
109
|
def colorize(color_code)
|
110
110
|
# Doesn't work with the Windows prompt...
|
111
|
-
|
112
|
-
(
|
111
|
+
@@windows ||= RbConfig::CONFIG['host_os'] =~ /mswin|win32|dos|mingw|cygwin/i
|
112
|
+
(@@windows || !$stdout.isatty) ? to_s : "#{color_code}#{to_s}\e[0m"
|
113
113
|
end
|
114
114
|
|
115
115
|
end
|
data/right_support.gemspec
CHANGED
@@ -7,8 +7,8 @@ spec = Gem::Specification.new do |s|
|
|
7
7
|
s.required_ruby_version = Gem::Requirement.new(">= 1.8.7")
|
8
8
|
|
9
9
|
s.name = 'right_support'
|
10
|
-
s.version = '2.2.
|
11
|
-
s.date = '2012-06-
|
10
|
+
s.version = '2.2.1'
|
11
|
+
s.date = '2012-06-27'
|
12
12
|
|
13
13
|
s.authors = ['Tony Spataro', 'Sergey Sergyenko', 'Ryan Williamson', 'Lee Kirchhoff', 'Sergey Enin']
|
14
14
|
s.email = 'support@rightscale.com'
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: right_support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 5
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 2.2.
|
9
|
+
- 1
|
10
|
+
version: 2.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Tony Spataro
|
@@ -19,7 +19,8 @@ autorequire:
|
|
19
19
|
bindir: bin
|
20
20
|
cert_chain: []
|
21
21
|
|
22
|
-
date: 2012-06-
|
22
|
+
date: 2012-06-27 00:00:00 -07:00
|
23
|
+
default_executable:
|
23
24
|
dependencies: []
|
24
25
|
|
25
26
|
description: A toolkit of useful, reusable foundation code created by RightScale.
|
@@ -79,6 +80,7 @@ files:
|
|
79
80
|
- lib/right_support/validation/openssl.rb
|
80
81
|
- lib/right_support/validation/ssh.rb
|
81
82
|
- right_support.gemspec
|
83
|
+
has_rdoc: true
|
82
84
|
homepage: https://github.com/rightscale/right_support
|
83
85
|
licenses: []
|
84
86
|
|
@@ -110,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
110
112
|
requirements: []
|
111
113
|
|
112
114
|
rubyforge_project:
|
113
|
-
rubygems_version: 1.
|
115
|
+
rubygems_version: 1.3.7
|
114
116
|
signing_key:
|
115
117
|
specification_version: 3
|
116
118
|
summary: Reusable foundation code.
|