right_agent 0.10.10 → 0.10.11
Sign up to get free protection for your applications and to get access to all the features.
@@ -97,18 +97,29 @@ module RightScale
|
|
97
97
|
'/var/lib/rightscale/right_link'
|
98
98
|
end
|
99
99
|
|
100
|
+
# Data which is awaiting some kind of later processing
|
100
101
|
def spool_dir
|
101
102
|
'/var/spool'
|
102
103
|
end
|
103
104
|
|
105
|
+
# Cached data from applications. Such data is locally generated as a
|
106
|
+
# result of time-consuming I/O or calculation. The application must
|
107
|
+
# be able to regenerate or restore the data.
|
104
108
|
def cache_dir
|
105
109
|
'/var/cache/rightscale'
|
106
110
|
end
|
107
111
|
|
112
|
+
# System logs
|
108
113
|
def log_dir
|
109
114
|
'/var/log'
|
110
115
|
end
|
111
116
|
|
117
|
+
# Source code, for reference purposes and for development.
|
118
|
+
def source_code_dir
|
119
|
+
'/usr/src'
|
120
|
+
end
|
121
|
+
|
122
|
+
# Temporary files.
|
112
123
|
def temp_dir
|
113
124
|
'/tmp'
|
114
125
|
end
|
@@ -148,18 +148,29 @@ module RightScale
|
|
148
148
|
'/var/lib/rightscale/right_link'
|
149
149
|
end
|
150
150
|
|
151
|
+
# Data which is awaiting some kind of later processing
|
151
152
|
def spool_dir
|
152
153
|
'/var/spool'
|
153
154
|
end
|
154
155
|
|
156
|
+
# Cached data from applications. Such data is locally generated as a
|
157
|
+
# result of time-consuming I/O or calculation. The application must
|
158
|
+
# be able to regenerate or restore the data.
|
155
159
|
def cache_dir
|
156
|
-
'/var/cache'
|
160
|
+
'/var/cache/rightscale'
|
157
161
|
end
|
158
162
|
|
163
|
+
# System logs
|
159
164
|
def log_dir
|
160
165
|
'/var/log'
|
161
166
|
end
|
162
167
|
|
168
|
+
# Source code, for reference purposes and for development.
|
169
|
+
def source_code_dir
|
170
|
+
'/usr/src'
|
171
|
+
end
|
172
|
+
|
173
|
+
# Temporary files.
|
163
174
|
def temp_dir
|
164
175
|
'/tmp'
|
165
176
|
end
|
@@ -185,6 +185,11 @@ module RightScale
|
|
185
185
|
return pretty_path(File.join(Dir::COMMON_APPDATA, 'RightScale', 'log'))
|
186
186
|
end
|
187
187
|
|
188
|
+
# Source code, for reference purposes and for development.
|
189
|
+
def source_code_dir
|
190
|
+
return pretty_path(File.join(Dir::COMMON_APPDATA, 'RightScale', 'src'))
|
191
|
+
end
|
192
|
+
|
188
193
|
# Temp directory for the current platform
|
189
194
|
def temp_dir
|
190
195
|
if @temp_dir.nil?
|
data/right_agent.gemspec
CHANGED
@@ -24,8 +24,8 @@ require 'rubygems'
|
|
24
24
|
|
25
25
|
Gem::Specification.new do |spec|
|
26
26
|
spec.name = 'right_agent'
|
27
|
-
spec.version = '0.10.
|
28
|
-
spec.date = '2012-
|
27
|
+
spec.version = '0.10.11'
|
28
|
+
spec.date = '2012-08-21'
|
29
29
|
spec.authors = ['Lee Kirchhoff', 'Raphael Simon', 'Tony Spataro']
|
30
30
|
spec.email = 'lee@rightscale.com'
|
31
31
|
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: 33
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 10
|
9
|
-
-
|
10
|
-
version: 0.10.
|
9
|
+
- 11
|
10
|
+
version: 0.10.11
|
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: 2012-
|
20
|
+
date: 2012-08-21 00:00:00 -07:00
|
21
21
|
default_executable:
|
22
22
|
dependencies:
|
23
23
|
- !ruby/object:Gem::Dependency
|