gce-host 0.4.4 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,8 +1,8 @@
1
- var inSearch = null;
2
- var searchIndex = 0;
1
+ (function() {
2
+
3
+ var $clicked = $(null);
4
+ var searchTimeout = null;
3
5
  var searchCache = [];
4
- var searchString = '';
5
- var regexSearchString = '';
6
6
  var caseSensitiveMatch = false;
7
7
  var ignoreKeyCodeMin = 8;
8
8
  var ignoreKeyCodeMax = 46;
@@ -12,170 +12,205 @@ RegExp.escape = function(text) {
12
12
  return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
13
13
  }
14
14
 
15
- function fullListSearch() {
16
- // generate cache
17
- searchCache = [];
18
- $('#full_list li').each(function() {
19
- var link = $(this).find('.object_link a');
20
- if (link.length === 0) return;
21
- var fullName = link.attr('title').split(' ')[0];
22
- searchCache.push({name:link.text(), fullName:fullName, node:$(this), link:link});
15
+ function escapeShortcut() {
16
+ $(document).keydown(function(evt) {
17
+ if (evt.which == 27) {
18
+ window.parent.postMessage('navEscape', '*');
19
+ }
23
20
  });
21
+ }
24
22
 
25
- $('#search input').keyup(function(event) {
26
- if ((event.keyCode > ignoreKeyCodeMin && event.keyCode < ignoreKeyCodeMax)
27
- || event.keyCode == commandKey)
28
- return;
29
- searchString = this.value;
30
- caseSensitiveMatch = searchString.match(/[A-Z]/) != null;
31
- regexSearchString = RegExp.escape(searchString);
32
- if (caseSensitiveMatch) {
33
- regexSearchString += "|" +
34
- $.map(searchString.split(''), function(e) { return RegExp.escape(e); }).
35
- join('.+?');
36
- }
37
- if (searchString === "") {
38
- clearTimeout(inSearch);
39
- inSearch = null;
40
- $('ul .search_uncollapsed').removeClass('search_uncollapsed');
41
- $('#full_list, #content').removeClass('insearch');
42
- $('#full_list li').removeClass('found').each(function() {
43
-
44
- var link = $(this).find('.object_link a');
45
- if (link.length > 0) link.text(link.text());
23
+ function navResizer() {
24
+ $(window).mousemove(function(e) {
25
+ window.parent.postMessage({
26
+ action: 'mousemove', event: {pageX: e.pageX, which: e.which}
27
+ }, '*');
28
+ }).mouseup(function(e) {
29
+ window.parent.postMessage({action: 'mouseup'}, '*');
30
+ });
31
+ window.parent.postMessage("navReady", "*");
32
+ }
33
+
34
+ function clearSearchTimeout() {
35
+ clearTimeout(searchTimeout);
36
+ searchTimeout = null;
37
+ }
38
+
39
+ function enableLinks() {
40
+ // load the target page in the parent window
41
+ $('#full_list li').on('click', function(evt) {
42
+ $('#full_list li').removeClass('clicked');
43
+ $clicked = $(this);
44
+ $clicked.addClass('clicked');
45
+ evt.stopPropagation();
46
+
47
+ if (evt.target.tagName === 'A') return true;
48
+
49
+ var elem = $clicked.find('> .item .object_link a')[0];
50
+ var e = evt.originalEvent;
51
+ var newEvent = new MouseEvent(evt.originalEvent.type);
52
+ newEvent.initMouseEvent(e.type, e.canBubble, e.cancelable, e.view, e.detail, e.screenX, e.screenY, e.clientX, e.clientY, e.ctrlKey, e.altKey, e.shiftKey, e.metaKey, e.button, e.relatedTarget);
53
+ elem.dispatchEvent(newEvent);
54
+ evt.preventDefault();
55
+ return false;
56
+ });
57
+ }
58
+
59
+ function enableToggles() {
60
+ // show/hide nested classes on toggle click
61
+ $('#full_list a.toggle').on('click', function(evt) {
62
+ evt.stopPropagation();
63
+ evt.preventDefault();
64
+ $(this).parent().parent().toggleClass('collapsed');
65
+ highlight();
66
+ });
67
+ }
68
+
69
+ function populateSearchCache() {
70
+ $('#full_list li .item').each(function() {
71
+ var $node = $(this);
72
+ var $link = $node.find('.object_link a');
73
+ if ($link.length > 0) {
74
+ searchCache.push({
75
+ node: $node,
76
+ link: $link,
77
+ name: $link.text(),
78
+ fullName: $link.attr('title').split(' ')[0]
46
79
  });
47
- if (clicked) {
48
- clicked.parents('ul').each(function() {
49
- $(this).removeClass('collapsed').prev().removeClass('collapsed');
50
- });
51
- }
52
- highlight();
53
80
  }
54
- else {
55
- if (inSearch) clearTimeout(inSearch);
56
- searchIndex = 0;
57
- lastRowClass = '';
58
- $('#full_list, #content').addClass('insearch');
59
- $('#noresults').text('');
60
- searchItem();
81
+ });
82
+ }
83
+
84
+ function enableSearch() {
85
+ $('#search input').keyup(function(event) {
86
+ if (ignoredKeyPress(event)) return;
87
+ if (this.value === "") {
88
+ clearSearch();
89
+ } else {
90
+ performSearch(this.value);
61
91
  }
62
92
  });
63
93
 
64
- $('#search input').focus();
65
- $('#full_list').after("<div id='noresults'></div>");
94
+ $('#full_list').after("<div id='noresults' style='display:none'></div>");
95
+ }
96
+
97
+ function ignoredKeyPress(event) {
98
+ if (
99
+ (event.keyCode > ignoreKeyCodeMin && event.keyCode < ignoreKeyCodeMax) ||
100
+ (event.keyCode == commandKey)
101
+ ) {
102
+ return true;
103
+ } else {
104
+ return false;
105
+ }
106
+ }
107
+
108
+ function clearSearch() {
109
+ clearSearchTimeout();
110
+ $('#full_list .found').removeClass('found').each(function() {
111
+ var $link = $(this).find('.object_link a');
112
+ $link.text($link.text());
113
+ });
114
+ $('#full_list, #content').removeClass('insearch');
115
+ $clicked.parents().removeClass('collapsed');
116
+ highlight();
117
+ }
118
+
119
+ function performSearch(searchString) {
120
+ clearSearchTimeout();
121
+ $('#full_list, #content').addClass('insearch');
122
+ $('#noresults').text('').hide();
123
+ partialSearch(searchString, 0);
66
124
  }
67
125
 
68
- var lastRowClass = '';
69
- function searchItem() {
70
- for (var i = 0; i < searchCache.length / 50; i++) {
71
- var item = searchCache[searchIndex];
126
+ function partialSearch(searchString, offset) {
127
+ var lastRowClass = '';
128
+ var i = null;
129
+ for (i = offset; i < Math.min(offset + 50, searchCache.length); i++) {
130
+ var item = searchCache[i];
72
131
  var searchName = (searchString.indexOf('::') != -1 ? item.fullName : item.name);
73
- var matchString = regexSearchString;
132
+ var matchString = buildMatchString(searchString);
74
133
  var matchRegexp = new RegExp(matchString, caseSensitiveMatch ? "" : "i");
75
134
  if (searchName.match(matchRegexp) == null) {
76
135
  item.node.removeClass('found');
136
+ item.link.text(item.link.text());
77
137
  }
78
138
  else {
79
- item.node.css('padding-left', '10px').addClass('found');
80
- item.node.parents().addClass('search_uncollapsed');
139
+ item.node.addClass('found');
81
140
  item.node.removeClass(lastRowClass).addClass(lastRowClass == 'r1' ? 'r2' : 'r1');
82
141
  lastRowClass = item.node.hasClass('r1') ? 'r1' : 'r2';
83
142
  item.link.html(item.name.replace(matchRegexp, "<strong>$&</strong>"));
84
143
  }
85
-
86
- if (searchCache.length === searchIndex + 1) {
87
- searchDone();
88
- return;
89
- }
90
- else {
91
- searchIndex++;
92
- }
93
144
  }
94
- inSearch = setTimeout('searchItem()', 0);
145
+ if(i == searchCache.length) {
146
+ searchDone();
147
+ } else {
148
+ searchTimeout = setTimeout(function() {
149
+ partialSearch(searchString, i);
150
+ }, 0);
151
+ }
95
152
  }
96
153
 
97
154
  function searchDone() {
98
- highlight(true);
155
+ searchTimeout = null;
156
+ highlight();
99
157
  if ($('#full_list li:visible').size() === 0) {
100
158
  $('#noresults').text('No results were found.').hide().fadeIn();
101
- }
102
- else {
103
- $('#noresults').text('');
159
+ } else {
160
+ $('#noresults').text('').hide();
104
161
  }
105
162
  $('#content').removeClass('insearch');
106
- clearTimeout(inSearch);
107
- inSearch = null;
108
- }
109
-
110
- clicked = null;
111
- function linkList() {
112
- $('#full_list li, #full_list li a:last').click(function(evt) {
113
- if ($(this).hasClass('toggle')) return true;
114
- if (this.tagName.toLowerCase() == "li") {
115
- if ($(this).find('.object_link a').length === 0) {
116
- $(this).children('a.toggle').click();
117
- return false;
118
- }
119
- var toggle = $(this).children('a.toggle');
120
- if (toggle.size() > 0 && evt.pageX < toggle.offset().left) {
121
- toggle.click();
122
- return false;
123
- }
124
- }
125
- if (clicked) clicked.removeClass('clicked');
126
- var win;
127
- try {
128
- win = window.top.frames.main ? window.top.frames.main : window.parent;
129
- } catch (e) { win = window.parent; }
130
- if (this.tagName.toLowerCase() == "a") {
131
- clicked = $(this).parents('li').addClass('clicked');
132
- win.location = this.href;
133
- }
134
- else {
135
- clicked = $(this).addClass('clicked');
136
- win.location = $(this).find('a:last').attr('href');
137
- }
138
- return false;
139
- });
140
163
  }
141
164
 
142
- function collapse() {
143
- if (!$('#full_list').hasClass('class')) return;
144
- $('#full_list.class a.toggle').click(function() {
145
- $(this).parent().toggleClass('collapsed').next().toggleClass('collapsed');
146
- highlight();
147
- return false;
148
- });
149
- $('#full_list.class ul').each(function() {
150
- $(this).addClass('collapsed').prev().addClass('collapsed');
151
- });
152
- $('#full_list.class').children().removeClass('collapsed');
153
- highlight();
165
+ function buildMatchString(searchString, event) {
166
+ caseSensitiveMatch = searchString.match(/[A-Z]/) != null;
167
+ var regexSearchString = RegExp.escape(searchString);
168
+ if (caseSensitiveMatch) {
169
+ regexSearchString += "|" +
170
+ $.map(searchString.split(''), function(e) { return RegExp.escape(e); }).
171
+ join('.+?');
172
+ }
173
+ return regexSearchString;
154
174
  }
155
175
 
156
- function highlight(no_padding) {
157
- var n = 1;
158
- $('#full_list li:visible').each(function() {
159
- var next = n == 1 ? 2 : 1;
160
- $(this).removeClass("r" + next).addClass("r" + n);
161
- if (!no_padding && $('#full_list').hasClass('class')) {
162
- $(this).css('padding-left', (10 + $(this).parents('ul').size() * 15) + 'px');
163
- }
164
- n = next;
176
+ function highlight() {
177
+ $('#full_list li:visible').each(function(n) {
178
+ $(this).removeClass('even odd').addClass(n % 2 == 0 ? 'odd' : 'even');
165
179
  });
166
180
  }
167
181
 
168
- function escapeShortcut() {
169
- $(document).keydown(function(evt) {
170
- if (evt.which == 27) {
171
- $('#search_frame', window.top.document).slideUp(100);
172
- $('#search a', window.top.document).removeClass('active inactive');
173
- $(window.top).focus();
174
- }
175
- });
182
+ /**
183
+ * Expands the tree to the target element and its immediate
184
+ * children.
185
+ */
186
+ function expandTo(path) {
187
+ var $target = $(document.getElementById('object_' + path));
188
+ $target.addClass('clicked');
189
+ $target.removeClass('collapsed');
190
+ $target.parentsUntil('#full_list', 'li').removeClass('collapsed');
191
+ if($target[0]) {
192
+ window.scrollTo(window.scrollX, $target.offset().top - 250);
193
+ highlight();
194
+ }
195
+ }
196
+
197
+ function windowEvents(event) {
198
+ var msg = event.data;
199
+ if (msg.action === "expand") {
200
+ expandTo(msg.path);
201
+ }
202
+ return false;
176
203
  }
177
204
 
178
- $(escapeShortcut);
179
- $(fullListSearch);
180
- $(linkList);
181
- $(collapse);
205
+ window.addEventListener("message", windowEvents, false);
206
+
207
+ $(document).ready(function() {
208
+ escapeShortcut();
209
+ navResizer();
210
+ enableLinks();
211
+ enableToggles();
212
+ populateSearchCache();
213
+ enableSearch();
214
+ });
215
+
216
+ })();
@@ -1,8 +1,8 @@
1
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1
+ <!DOCTYPE html>
3
2
  <html>
4
3
  <head>
5
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
5
+ <meta charset="utf-8" />
6
6
 
7
7
  <link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
8
8
 
@@ -19,482 +19,632 @@
19
19
  <base id="base_target" target="_parent" />
20
20
  </head>
21
21
  <body>
22
- <script type="text/javascript" charset="utf-8">
23
- var hasFrames = false;
24
- try {
25
- hasFrames = window.top.frames.main ? true : false;
26
- } catch (e) { }
27
- if (hasFrames) {
28
- document.getElementById('base_target').target = 'main';
29
- document.body.className = 'frames';
30
- }
31
- </script>
32
22
  <div id="content">
33
- <h1 id="full_list_header">Method List</h1>
34
- <div id="nav">
35
-
36
- <span><a target="_self" href="class_list.html">
37
- Classes
38
- </a></span>
39
-
40
- <span><a target="_self" href="method_list.html">
41
- Methods
42
- </a></span>
43
-
44
- <span><a target="_self" href="file_list.html">
45
- Files
46
- </a></span>
47
-
23
+ <div class="fixed_header">
24
+ <h1 id="full_list_header">Method List</h1>
25
+ <div id="full_list_nav">
26
+
27
+ <span><a target="_self" href="class_list.html">
28
+ Classes
29
+ </a></span>
30
+
31
+ <span><a target="_self" href="method_list.html">
32
+ Methods
33
+ </a></span>
34
+
35
+ <span><a target="_self" href="file_list.html">
36
+ Files
37
+ </a></span>
38
+
39
+ </div>
40
+
41
+ <div id="search">Search: <input type="text" /></div>
48
42
  </div>
49
- <div id="search">Search: <input type="text" /></div>
50
43
 
51
44
  <ul id="full_list" class="method">
52
45
 
53
46
 
54
- <li class="r1 ">
55
- <span class='object_link'><a href="GCE/Host/RoleData.html#%3D%3D-instance_method" title="GCE::Host::RoleData#== (method)">#==</a></span>
56
- <small>GCE::Host::RoleData</small>
47
+ <li class="odd ">
48
+ <div class="item">
49
+ <span class='object_link'><a href="GCE/Host/RoleData.html#==-instance_method" title="GCE::Host::RoleData#== (method)">#==</a></span>
50
+ <small>GCE::Host::RoleData</small>
51
+ </div>
57
52
  </li>
58
53
 
59
54
 
60
- <li class="r2 ">
61
- <span class='object_link'><a href="GCE/Host/Config.html#array_value_delimiter-class_method" title="GCE::Host::Config.array_value_delimiter (method)">array_value_delimiter</a></span>
62
- <small>GCE::Host::Config</small>
55
+ <li class="even ">
56
+ <div class="item">
57
+ <span class='object_link'><a href="GCE/Host/Config.html#application_default_credentials_file-class_method" title="GCE::Host::Config.application_default_credentials_file (method)">application_default_credentials_file</a></span>
58
+ <small>GCE::Host::Config</small>
59
+ </div>
63
60
  </li>
64
61
 
65
62
 
66
- <li class="r1 ">
67
- <span class='object_link'><a href="GCE/Host/Config.html#auth_method-class_method" title="GCE::Host::Config.auth_method (method)">auth_method</a></span>
68
- <small>GCE::Host::Config</small>
63
+ <li class="odd ">
64
+ <div class="item">
65
+ <span class='object_link'><a href="GCE/Host/Config.html#array_value_delimiter-class_method" title="GCE::Host::Config.array_value_delimiter (method)">array_value_delimiter</a></span>
66
+ <small>GCE::Host::Config</small>
67
+ </div>
69
68
  </li>
70
69
 
71
70
 
72
- <li class="r2 ">
73
- <span class='object_link'><a href="GCE/Host/RoleData.html#build-class_method" title="GCE::Host::RoleData.build (method)">build</a></span>
74
- <small>GCE::Host::RoleData</small>
71
+ <li class="even ">
72
+ <div class="item">
73
+ <span class='object_link'><a href="GCE/Host/Config.html#auth_method-class_method" title="GCE::Host::Config.auth_method (method)">auth_method</a></span>
74
+ <small>GCE::Host::Config</small>
75
+ </div>
75
76
  </li>
76
77
 
77
78
 
78
- <li class="r1 ">
79
- <span class='object_link'><a href="GCE/Host/StringUtil.html#camelize-class_method" title="GCE::Host::StringUtil.camelize (method)">camelize</a></span>
80
- <small>GCE::Host::StringUtil</small>
79
+ <li class="odd ">
80
+ <div class="item">
81
+ <span class='object_link'><a href="GCE/Host/RoleData.html#build-class_method" title="GCE::Host::RoleData.build (method)">build</a></span>
82
+ <small>GCE::Host::RoleData</small>
83
+ </div>
81
84
  </li>
82
85
 
83
86
 
84
- <li class="r2 ">
85
- <span class='object_link'><a href="GCE/Host.html#conditions-instance_method" title="GCE::Host#conditions (method)">#conditions</a></span>
86
- <small>GCE::Host</small>
87
+ <li class="even ">
88
+ <div class="item">
89
+ <span class='object_link'><a href="GCE/Host/StringUtil.html#camelize-class_method" title="GCE::Host::StringUtil.camelize (method)">camelize</a></span>
90
+ <small>GCE::Host::StringUtil</small>
91
+ </div>
87
92
  </li>
88
93
 
89
94
 
90
- <li class="r1 ">
91
- <span class='object_link'><a href="GCE/Host/Config.html#config-class_method" title="GCE::Host::Config.config (method)">config</a></span>
92
- <small>GCE::Host::Config</small>
95
+ <li class="odd ">
96
+ <div class="item">
97
+ <span class='object_link'><a href="GCE/Host.html#conditions-instance_method" title="GCE::Host#conditions (method)">#conditions</a></span>
98
+ <small>GCE::Host</small>
99
+ </div>
93
100
  </li>
94
101
 
95
102
 
96
- <li class="r2 ">
97
- <span class='object_link'><a href="GCE/Host/Config.html#config_default-class_method" title="GCE::Host::Config.config_default (method)">config_default</a></span>
98
- <small>GCE::Host::Config</small>
103
+ <li class="even ">
104
+ <div class="item">
105
+ <span class='object_link'><a href="GCE/Host/Config.html#config-class_method" title="GCE::Host::Config.config (method)">config</a></span>
106
+ <small>GCE::Host::Config</small>
107
+ </div>
99
108
  </li>
100
109
 
101
110
 
102
- <li class="r1 ">
103
- <span class='object_link'><a href="GCE/Host/Config.html#config_default_file-class_method" title="GCE::Host::Config.config_default_file (method)">config_default_file</a></span>
104
- <small>GCE::Host::Config</small>
111
+ <li class="odd ">
112
+ <div class="item">
113
+ <span class='object_link'><a href="GCE/Host/Config.html#config_default-class_method" title="GCE::Host::Config.config_default (method)">config_default</a></span>
114
+ <small>GCE::Host::Config</small>
115
+ </div>
105
116
  </li>
106
117
 
107
118
 
108
- <li class="r2 ">
109
- <span class='object_link'><a href="GCE/Host/Config.html#config_file-class_method" title="GCE::Host::Config.config_file (method)">config_file</a></span>
110
- <small>GCE::Host::Config</small>
119
+ <li class="even ">
120
+ <div class="item">
121
+ <span class='object_link'><a href="GCE/Host/Config.html#config_default_file-class_method" title="GCE::Host::Config.config_default_file (method)">config_default_file</a></span>
122
+ <small>GCE::Host::Config</small>
123
+ </div>
111
124
  </li>
112
125
 
113
126
 
114
- <li class="r1 ">
115
- <span class='object_link'><a href="GCE/Host.html#configure-class_method" title="GCE::Host.configure (method)">configure</a></span>
116
- <small>GCE::Host</small>
127
+ <li class="odd ">
128
+ <div class="item">
129
+ <span class='object_link'><a href="GCE/Host/Config.html#config_file-class_method" title="GCE::Host::Config.config_file (method)">config_file</a></span>
130
+ <small>GCE::Host::Config</small>
131
+ </div>
117
132
  </li>
118
133
 
119
134
 
120
- <li class="r2 ">
121
- <span class='object_link'><a href="GCE/Host/Config.html#configure-class_method" title="GCE::Host::Config.configure (method)">configure</a></span>
122
- <small>GCE::Host::Config</small>
135
+ <li class="even ">
136
+ <div class="item">
137
+ <span class='object_link'><a href="GCE/Host.html#configure-class_method" title="GCE::Host.configure (method)">configure</a></span>
138
+ <small>GCE::Host</small>
139
+ </div>
123
140
  </li>
124
141
 
125
142
 
126
- <li class="r1 ">
127
- <span class='object_link'><a href="GCE/Host/HostData.html#creation_timestamp-instance_method" title="GCE::Host::HostData#creation_timestamp (method)">#creation_timestamp</a></span>
128
- <small>GCE::Host::HostData</small>
143
+ <li class="odd ">
144
+ <div class="item">
145
+ <span class='object_link'><a href="GCE/Host/Config.html#configure-class_method" title="GCE::Host::Config.configure (method)">configure</a></span>
146
+ <small>GCE::Host::Config</small>
147
+ </div>
129
148
  </li>
130
149
 
131
150
 
132
- <li class="r2 ">
133
- <span class='object_link'><a href="GCE/Host/Config.html#credentials-class_method" title="GCE::Host::Config.credentials (method)">credentials</a></span>
134
- <small>GCE::Host::Config</small>
151
+ <li class="even ">
152
+ <div class="item">
153
+ <span class='object_link'><a href="GCE/Host/HostData.html#creation_timestamp-instance_method" title="GCE::Host::HostData#creation_timestamp (method)">#creation_timestamp</a></span>
154
+ <small>GCE::Host::HostData</small>
155
+ </div>
135
156
  </li>
136
157
 
137
158
 
138
- <li class="r1 ">
139
- <span class='object_link'><a href="GCE/Host/Config.html#credentials_file-class_method" title="GCE::Host::Config.credentials_file (method)">credentials_file</a></span>
140
- <small>GCE::Host::Config</small>
159
+ <li class="odd ">
160
+ <div class="item">
161
+ <span class='object_link'><a href="GCE/Host/Config.html#credentials-class_method" title="GCE::Host::Config.credentials (method)">credentials</a></span>
162
+ <small>GCE::Host::Config</small>
163
+ </div>
141
164
  </li>
142
165
 
143
166
 
144
- <li class="r2 ">
145
- <span class='object_link'><a href="GCE/Host/Config.html#credentials_file_default-class_method" title="GCE::Host::Config.credentials_file_default (method)">credentials_file_default</a></span>
146
- <small>GCE::Host::Config</small>
167
+ <li class="even ">
168
+ <div class="item">
169
+ <span class='object_link'><a href="GCE/Host/Config.html#credentials_file-class_method" title="GCE::Host::Config.credentials_file (method)">credentials_file</a></span>
170
+ <small>GCE::Host::Config</small>
171
+ </div>
147
172
  </li>
148
173
 
149
174
 
150
- <li class="r1 ">
151
- <span class='object_link'><a href="GCE/Host.html#each-instance_method" title="GCE::Host#each (method)">#each</a></span>
152
- <small>GCE::Host</small>
175
+ <li class="odd ">
176
+ <div class="item">
177
+ <span class='object_link'><a href="GCE/Host.html#each-instance_method" title="GCE::Host#each (method)">#each</a></span>
178
+ <small>GCE::Host</small>
179
+ </div>
153
180
  </li>
154
181
 
155
182
 
156
- <li class="r2 ">
157
- <span class='object_link'><a href="GCE/Host/HashUtil.html#except-class_method" title="GCE::Host::HashUtil.except (method)">except</a></span>
158
- <small>GCE::Host::HashUtil</small>
183
+ <li class="even ">
184
+ <div class="item">
185
+ <span class='object_link'><a href="GCE/Host/HashUtil.html#except-class_method" title="GCE::Host::HashUtil.except (method)">except</a></span>
186
+ <small>GCE::Host::HashUtil</small>
187
+ </div>
159
188
  </li>
160
189
 
161
190
 
162
- <li class="r1 ">
163
- <span class='object_link'><a href="GCE/Host.html#gce_client-class_method" title="GCE::Host.gce_client (method)">gce_client</a></span>
164
- <small>GCE::Host</small>
191
+ <li class="odd ">
192
+ <div class="item">
193
+ <span class='object_link'><a href="GCE/Host.html#gce_client-instance_method" title="GCE::Host#gce_client (method)">#gce_client</a></span>
194
+ <small>GCE::Host</small>
195
+ </div>
165
196
  </li>
166
197
 
167
198
 
168
- <li class="r2 ">
169
- <span class='object_link'><a href="GCE/Host.html#gce_client-instance_method" title="GCE::Host#gce_client (method)">#gce_client</a></span>
170
- <small>GCE::Host</small>
199
+ <li class="even ">
200
+ <div class="item">
201
+ <span class='object_link'><a href="GCE/Host.html#gce_client-class_method" title="GCE::Host.gce_client (method)">gce_client</a></span>
202
+ <small>GCE::Host</small>
203
+ </div>
171
204
  </li>
172
205
 
173
206
 
174
- <li class="r1 ">
175
- <span class='object_link'><a href="GCE/Host/HostData.html#hostname-instance_method" title="GCE::Host::HostData#hostname (method)">#hostname</a></span>
176
- <small>GCE::Host::HostData</small>
207
+ <li class="odd ">
208
+ <div class="item">
209
+ <span class='object_link'><a href="GCE/Host/Config.html#global_application_default_credentials_file-class_method" title="GCE::Host::Config.global_application_default_credentials_file (method)">global_application_default_credentials_file</a></span>
210
+ <small>GCE::Host::Config</small>
211
+ </div>
177
212
  </li>
178
213
 
179
214
 
180
- <li class="r2 ">
181
- <span class='object_link'><a href="GCE/Host/HostData.html#info-instance_method" title="GCE::Host::HostData#info (method)">#info</a></span>
182
- <small>GCE::Host::HostData</small>
215
+ <li class="even ">
216
+ <div class="item">
217
+ <span class='object_link'><a href="GCE/Host/HostData.html#hostname-instance_method" title="GCE::Host::HostData#hostname (method)">#hostname</a></span>
218
+ <small>GCE::Host::HostData</small>
219
+ </div>
183
220
  </li>
184
221
 
185
222
 
186
- <li class="r1 ">
187
- <span class='object_link'><a href="GCE/Host/HostData.html#initialize-instance_method" title="GCE::Host::HostData#initialize (method)">#initialize</a></span>
188
- <small>GCE::Host::HostData</small>
223
+ <li class="odd ">
224
+ <div class="item">
225
+ <span class='object_link'><a href="GCE/Host/HostData.html#info-instance_method" title="GCE::Host::HostData#info (method)">#info</a></span>
226
+ <small>GCE::Host::HostData</small>
227
+ </div>
189
228
  </li>
190
229
 
191
230
 
192
- <li class="r2 ">
193
- <span class='object_link'><a href="GCE/Host/CLI.html#initialize-instance_method" title="GCE::Host::CLI#initialize (method)">#initialize</a></span>
194
- <small>GCE::Host::CLI</small>
231
+ <li class="even ">
232
+ <div class="item">
233
+ <span class='object_link'><a href="GCE/Host/HostData.html#initialize-instance_method" title="GCE::Host::HostData#initialize (method)">#initialize</a></span>
234
+ <small>GCE::Host::HostData</small>
235
+ </div>
195
236
  </li>
196
237
 
197
238
 
198
- <li class="r1 ">
199
- <span class='object_link'><a href="GCE/Host/RoleData.html#initialize-instance_method" title="GCE::Host::RoleData#initialize (method)">#initialize</a></span>
200
- <small>GCE::Host::RoleData</small>
239
+ <li class="odd ">
240
+ <div class="item">
241
+ <span class='object_link'><a href="GCE/Host/CLI.html#initialize-instance_method" title="GCE::Host::CLI#initialize (method)">#initialize</a></span>
242
+ <small>GCE::Host::CLI</small>
243
+ </div>
201
244
  </li>
202
245
 
203
246
 
204
- <li class="r2 ">
205
- <span class='object_link'><a href="GCE/Host.html#initialize-instance_method" title="GCE::Host#initialize (method)">#initialize</a></span>
206
- <small>GCE::Host</small>
247
+ <li class="even ">
248
+ <div class="item">
249
+ <span class='object_link'><a href="GCE/Host.html#initialize-instance_method" title="GCE::Host#initialize (method)">#initialize</a></span>
250
+ <small>GCE::Host</small>
251
+ </div>
207
252
  </li>
208
253
 
209
254
 
210
- <li class="r1 ">
211
- <span class='object_link'><a href="GCE/Host/RoleData.html#inspect-instance_method" title="GCE::Host::RoleData#inspect (method)">#inspect</a></span>
212
- <small>GCE::Host::RoleData</small>
255
+ <li class="odd ">
256
+ <div class="item">
257
+ <span class='object_link'><a href="GCE/Host/RoleData.html#initialize-instance_method" title="GCE::Host::RoleData#initialize (method)">#initialize</a></span>
258
+ <small>GCE::Host::RoleData</small>
259
+ </div>
213
260
  </li>
214
261
 
215
262
 
216
- <li class="r2 ">
217
- <span class='object_link'><a href="GCE/Host/HostData.html#inspect-instance_method" title="GCE::Host::HostData#inspect (method)">#inspect</a></span>
218
- <small>GCE::Host::HostData</small>
263
+ <li class="even ">
264
+ <div class="item">
265
+ <span class='object_link'><a href="GCE/Host/HostData.html#inspect-instance_method" title="GCE::Host::HostData#inspect (method)">#inspect</a></span>
266
+ <small>GCE::Host::HostData</small>
267
+ </div>
219
268
  </li>
220
269
 
221
270
 
222
- <li class="r1 ">
223
- <span class='object_link'><a href="GCE/Host/HostData.html#instance-instance_method" title="GCE::Host::HostData#instance (method)">#instance</a></span>
224
- <small>GCE::Host::HostData</small>
271
+ <li class="odd ">
272
+ <div class="item">
273
+ <span class='object_link'><a href="GCE/Host/RoleData.html#inspect-instance_method" title="GCE::Host::RoleData#inspect (method)">#inspect</a></span>
274
+ <small>GCE::Host::RoleData</small>
275
+ </div>
225
276
  </li>
226
277
 
227
278
 
228
- <li class="r2 ">
229
- <span class='object_link'><a href="GCE/Host/HostData.html#instance_id-instance_method" title="GCE::Host::HostData#instance_id (method)">#instance_id</a></span>
230
- <small>GCE::Host::HostData</small>
279
+ <li class="even ">
280
+ <div class="item">
281
+ <span class='object_link'><a href="GCE/Host/HostData.html#instance-instance_method" title="GCE::Host::HostData#instance (method)">#instance</a></span>
282
+ <small>GCE::Host::HostData</small>
283
+ </div>
231
284
  </li>
232
285
 
233
286
 
234
- <li class="r1 ">
235
- <span class='object_link'><a href="GCE/Host/GCEClient.html#instances-instance_method" title="GCE::Host::GCEClient#instances (method)">#instances</a></span>
236
- <small>GCE::Host::GCEClient</small>
287
+ <li class="odd ">
288
+ <div class="item">
289
+ <span class='object_link'><a href="GCE/Host/HostData.html#instance_id-instance_method" title="GCE::Host::HostData#instance_id (method)">#instance_id</a></span>
290
+ <small>GCE::Host::HostData</small>
291
+ </div>
237
292
  </li>
238
293
 
239
294
 
240
- <li class="r2 ">
241
- <span class='object_link'><a href="GCE/Host/HostData.html#ip-instance_method" title="GCE::Host::HostData#ip (method)">#ip</a></span>
242
- <small>GCE::Host::HostData</small>
295
+ <li class="even ">
296
+ <div class="item">
297
+ <span class='object_link'><a href="GCE/Host/GCEClient.html#instances-instance_method" title="GCE::Host::GCEClient#instances (method)">#instances</a></span>
298
+ <small>GCE::Host::GCEClient</small>
299
+ </div>
243
300
  </li>
244
301
 
245
302
 
246
- <li class="r1 ">
247
- <span class='object_link'><a href="GCE/Host/Config.html#log_level-class_method" title="GCE::Host::Config.log_level (method)">log_level</a></span>
248
- <small>GCE::Host::Config</small>
303
+ <li class="odd ">
304
+ <div class="item">
305
+ <span class='object_link'><a href="GCE/Host/HostData.html#ip-instance_method" title="GCE::Host::HostData#ip (method)">#ip</a></span>
306
+ <small>GCE::Host::HostData</small>
307
+ </div>
249
308
  </li>
250
309
 
251
310
 
252
- <li class="r2 ">
253
- <span class='object_link'><a href="GCE/Host/HostData.html#machine_type-instance_method" title="GCE::Host::HostData#machine_type (method)">#machine_type</a></span>
254
- <small>GCE::Host::HostData</small>
311
+ <li class="even ">
312
+ <div class="item">
313
+ <span class='object_link'><a href="GCE/Host/Config.html#log_level-class_method" title="GCE::Host::Config.log_level (method)">log_level</a></span>
314
+ <small>GCE::Host::Config</small>
315
+ </div>
255
316
  </li>
256
317
 
257
318
 
258
- <li class="r1 ">
259
- <span class='object_link'><a href="GCE/Host/RoleData.html#match%3F-instance_method" title="GCE::Host::RoleData#match? (method)">#match?</a></span>
260
- <small>GCE::Host::RoleData</small>
319
+ <li class="odd ">
320
+ <div class="item">
321
+ <span class='object_link'><a href="GCE/Host/HostData.html#machine_type-instance_method" title="GCE::Host::HostData#machine_type (method)">#machine_type</a></span>
322
+ <small>GCE::Host::HostData</small>
323
+ </div>
261
324
  </li>
262
325
 
263
326
 
264
- <li class="r2 ">
265
- <span class='object_link'><a href="GCE/Host/HostData.html#match%3F-instance_method" title="GCE::Host::HostData#match? (method)">#match?</a></span>
266
- <small>GCE::Host::HostData</small>
327
+ <li class="even ">
328
+ <div class="item">
329
+ <span class='object_link'><a href="GCE/Host/HostData.html#match%3F-instance_method" title="GCE::Host::HostData#match? (method)">#match?</a></span>
330
+ <small>GCE::Host::HostData</small>
331
+ </div>
267
332
  </li>
268
333
 
269
334
 
270
- <li class="r1 ">
271
- <span class='object_link'><a href="GCE/Host.html#me-class_method" title="GCE::Host.me (method)">me</a></span>
272
- <small>GCE::Host</small>
335
+ <li class="odd ">
336
+ <div class="item">
337
+ <span class='object_link'><a href="GCE/Host/RoleData.html#match%3F-instance_method" title="GCE::Host::RoleData#match? (method)">#match?</a></span>
338
+ <small>GCE::Host::RoleData</small>
339
+ </div>
273
340
  </li>
274
341
 
275
342
 
276
- <li class="r2 ">
277
- <span class='object_link'><a href="GCE/Host/Config.html#open_timeout_sec-class_method" title="GCE::Host::Config.open_timeout_sec (method)">open_timeout_sec</a></span>
278
- <small>GCE::Host::Config</small>
343
+ <li class="even ">
344
+ <div class="item">
345
+ <span class='object_link'><a href="GCE/Host.html#me-class_method" title="GCE::Host.me (method)">me</a></span>
346
+ <small>GCE::Host</small>
347
+ </div>
279
348
  </li>
280
349
 
281
350
 
282
- <li class="r1 ">
283
- <span class='object_link'><a href="GCE/Host/Config.html#optional_array_keys-class_method" title="GCE::Host::Config.optional_array_keys (method)">optional_array_keys</a></span>
284
- <small>GCE::Host::Config</small>
351
+ <li class="odd ">
352
+ <div class="item">
353
+ <span class='object_link'><a href="GCE/Host/Config.html#open_timeout_sec-class_method" title="GCE::Host::Config.open_timeout_sec (method)">open_timeout_sec</a></span>
354
+ <small>GCE::Host::Config</small>
355
+ </div>
285
356
  </li>
286
357
 
287
358
 
288
- <li class="r2 ">
289
- <span class='object_link'><a href="GCE/Host/Config.html#optional_array_options-class_method" title="GCE::Host::Config.optional_array_options (method)">optional_array_options</a></span>
290
- <small>GCE::Host::Config</small>
359
+ <li class="even ">
360
+ <div class="item">
361
+ <span class='object_link'><a href="GCE/Host/Config.html#optional_array_keys-class_method" title="GCE::Host::Config.optional_array_keys (method)">optional_array_keys</a></span>
362
+ <small>GCE::Host::Config</small>
363
+ </div>
291
364
  </li>
292
365
 
293
366
 
294
- <li class="r1 ">
295
- <span class='object_link'><a href="GCE/Host/Config.html#optional_options-class_method" title="GCE::Host::Config.optional_options (method)">optional_options</a></span>
296
- <small>GCE::Host::Config</small>
367
+ <li class="odd ">
368
+ <div class="item">
369
+ <span class='object_link'><a href="GCE/Host/Config.html#optional_array_options-class_method" title="GCE::Host::Config.optional_array_options (method)">optional_array_options</a></span>
370
+ <small>GCE::Host::Config</small>
371
+ </div>
297
372
  </li>
298
373
 
299
374
 
300
- <li class="r2 ">
301
- <span class='object_link'><a href="GCE/Host/Config.html#optional_string_keys-class_method" title="GCE::Host::Config.optional_string_keys (method)">optional_string_keys</a></span>
302
- <small>GCE::Host::Config</small>
375
+ <li class="even ">
376
+ <div class="item">
377
+ <span class='object_link'><a href="GCE/Host/Config.html#optional_options-class_method" title="GCE::Host::Config.optional_options (method)">optional_options</a></span>
378
+ <small>GCE::Host::Config</small>
379
+ </div>
303
380
  </li>
304
381
 
305
382
 
306
- <li class="r1 ">
307
- <span class='object_link'><a href="GCE/Host/Config.html#optional_string_options-class_method" title="GCE::Host::Config.optional_string_options (method)">optional_string_options</a></span>
308
- <small>GCE::Host::Config</small>
383
+ <li class="odd ">
384
+ <div class="item">
385
+ <span class='object_link'><a href="GCE/Host/Config.html#optional_string_keys-class_method" title="GCE::Host::Config.optional_string_keys (method)">optional_string_keys</a></span>
386
+ <small>GCE::Host::Config</small>
387
+ </div>
309
388
  </li>
310
389
 
311
390
 
312
- <li class="r2 ">
313
- <span class='object_link'><a href="GCE/Host/CLI.html#options-instance_method" title="GCE::Host::CLI#options (method)">#options</a></span>
314
- <small>GCE::Host::CLI</small>
391
+ <li class="even ">
392
+ <div class="item">
393
+ <span class='object_link'><a href="GCE/Host/Config.html#optional_string_options-class_method" title="GCE::Host::Config.optional_string_options (method)">optional_string_options</a></span>
394
+ <small>GCE::Host::Config</small>
395
+ </div>
315
396
  </li>
316
397
 
317
398
 
318
- <li class="r1 ">
319
- <span class='object_link'><a href="GCE/Host.html#options-instance_method" title="GCE::Host#options (method)">#options</a></span>
320
- <small>GCE::Host</small>
399
+ <li class="odd ">
400
+ <div class="item">
401
+ <span class='object_link'><a href="GCE/Host.html#options-instance_method" title="GCE::Host#options (method)">#options</a></span>
402
+ <small>GCE::Host</small>
403
+ </div>
321
404
  </li>
322
405
 
323
406
 
324
- <li class="r2 ">
325
- <span class='object_link'><a href="GCE/Host/CLI.html#parse_options-instance_method" title="GCE::Host::CLI#parse_options (method)">#parse_options</a></span>
326
- <small>GCE::Host::CLI</small>
407
+ <li class="even ">
408
+ <div class="item">
409
+ <span class='object_link'><a href="GCE/Host/CLI.html#options-instance_method" title="GCE::Host::CLI#options (method)">#options</a></span>
410
+ <small>GCE::Host::CLI</small>
411
+ </div>
327
412
  </li>
328
413
 
329
414
 
330
- <li class="r1 ">
331
- <span class='object_link'><a href="GCE/Host/StringUtil.html#pluralize-class_method" title="GCE::Host::StringUtil.pluralize (method)">pluralize</a></span>
332
- <small>GCE::Host::StringUtil</small>
415
+ <li class="odd ">
416
+ <div class="item">
417
+ <span class='object_link'><a href="GCE/Host/CLI.html#parse_options-instance_method" title="GCE::Host::CLI#parse_options (method)">#parse_options</a></span>
418
+ <small>GCE::Host::CLI</small>
419
+ </div>
333
420
  </li>
334
421
 
335
422
 
336
- <li class="r2 ">
337
- <span class='object_link'><a href="GCE/Host/HostData.html#private_ip_address-instance_method" title="GCE::Host::HostData#private_ip_address (method)">#private_ip_address</a></span>
338
- <small>GCE::Host::HostData</small>
423
+ <li class="even ">
424
+ <div class="item">
425
+ <span class='object_link'><a href="GCE/Host/StringUtil.html#pluralize-class_method" title="GCE::Host::StringUtil.pluralize (method)">pluralize</a></span>
426
+ <small>GCE::Host::StringUtil</small>
427
+ </div>
339
428
  </li>
340
429
 
341
430
 
342
- <li class="r1 ">
343
- <span class='object_link'><a href="GCE/Host/HostData.html#private_ip_addresses-instance_method" title="GCE::Host::HostData#private_ip_addresses (method)">#private_ip_addresses</a></span>
344
- <small>GCE::Host::HostData</small>
431
+ <li class="odd ">
432
+ <div class="item">
433
+ <span class='object_link'><a href="GCE/Host/HostData.html#private_ip_address-instance_method" title="GCE::Host::HostData#private_ip_address (method)">#private_ip_address</a></span>
434
+ <small>GCE::Host::HostData</small>
435
+ </div>
345
436
  </li>
346
437
 
347
438
 
348
- <li class="r2 ">
349
- <span class='object_link'><a href="GCE/Host/Config.html#project-class_method" title="GCE::Host::Config.project (method)">project</a></span>
350
- <small>GCE::Host::Config</small>
439
+ <li class="even ">
440
+ <div class="item">
441
+ <span class='object_link'><a href="GCE/Host/HostData.html#private_ip_addresses-instance_method" title="GCE::Host::HostData#private_ip_addresses (method)">#private_ip_addresses</a></span>
442
+ <small>GCE::Host::HostData</small>
443
+ </div>
351
444
  </li>
352
445
 
353
446
 
354
- <li class="r1 ">
355
- <span class='object_link'><a href="GCE/Host/Config.html#project_default-class_method" title="GCE::Host::Config.project_default (method)">project_default</a></span>
356
- <small>GCE::Host::Config</small>
447
+ <li class="odd ">
448
+ <div class="item">
449
+ <span class='object_link'><a href="GCE/Host/Config.html#project-class_method" title="GCE::Host::Config.project (method)">project</a></span>
450
+ <small>GCE::Host::Config</small>
451
+ </div>
357
452
  </li>
358
453
 
359
454
 
360
- <li class="r2 ">
361
- <span class='object_link'><a href="GCE/Host/HostData.html#provisioning%3F-instance_method" title="GCE::Host::HostData#provisioning? (method)">#provisioning?</a></span>
362
- <small>GCE::Host::HostData</small>
455
+ <li class="even ">
456
+ <div class="item">
457
+ <span class='object_link'><a href="GCE/Host/Config.html#project_default-class_method" title="GCE::Host::Config.project_default (method)">project_default</a></span>
458
+ <small>GCE::Host::Config</small>
459
+ </div>
363
460
  </li>
364
461
 
365
462
 
366
- <li class="r1 ">
367
- <span class='object_link'><a href="GCE/Host/HostData.html#public_ip_address-instance_method" title="GCE::Host::HostData#public_ip_address (method)">#public_ip_address</a></span>
368
- <small>GCE::Host::HostData</small>
463
+ <li class="odd ">
464
+ <div class="item">
465
+ <span class='object_link'><a href="GCE/Host/HostData.html#provisioning%3F-instance_method" title="GCE::Host::HostData#provisioning? (method)">#provisioning?</a></span>
466
+ <small>GCE::Host::HostData</small>
467
+ </div>
369
468
  </li>
370
469
 
371
470
 
372
- <li class="r2 ">
373
- <span class='object_link'><a href="GCE/Host/HostData.html#public_ip_addresses-instance_method" title="GCE::Host::HostData#public_ip_addresses (method)">#public_ip_addresses</a></span>
374
- <small>GCE::Host::HostData</small>
471
+ <li class="even ">
472
+ <div class="item">
473
+ <span class='object_link'><a href="GCE/Host/HostData.html#public_ip_address-instance_method" title="GCE::Host::HostData#public_ip_address (method)">#public_ip_address</a></span>
474
+ <small>GCE::Host::HostData</small>
475
+ </div>
375
476
  </li>
376
477
 
377
478
 
378
- <li class="r1 ">
379
- <span class='object_link'><a href="GCE/Host/Config.html#retries-class_method" title="GCE::Host::Config.retries (method)">retries</a></span>
380
- <small>GCE::Host::Config</small>
479
+ <li class="odd ">
480
+ <div class="item">
481
+ <span class='object_link'><a href="GCE/Host/HostData.html#public_ip_addresses-instance_method" title="GCE::Host::HostData#public_ip_addresses (method)">#public_ip_addresses</a></span>
482
+ <small>GCE::Host::HostData</small>
483
+ </div>
381
484
  </li>
382
485
 
383
486
 
384
- <li class="r2 ">
385
- <span class='object_link'><a href="GCE/Host/RoleData.html#role-instance_method" title="GCE::Host::RoleData#role (method)">#role</a></span>
386
- <small>GCE::Host::RoleData</small>
487
+ <li class="even ">
488
+ <div class="item">
489
+ <span class='object_link'><a href="GCE/Host/Config.html#retries-class_method" title="GCE::Host::Config.retries (method)">retries</a></span>
490
+ <small>GCE::Host::Config</small>
491
+ </div>
387
492
  </li>
388
493
 
389
494
 
390
- <li class="r1 ">
391
- <span class='object_link'><a href="GCE/Host/Config.html#role_max_depth-class_method" title="GCE::Host::Config.role_max_depth (method)">role_max_depth</a></span>
392
- <small>GCE::Host::Config</small>
495
+ <li class="odd ">
496
+ <div class="item">
497
+ <span class='object_link'><a href="GCE/Host/RoleData.html#role-instance_method" title="GCE::Host::RoleData#role (method)">#role</a></span>
498
+ <small>GCE::Host::RoleData</small>
499
+ </div>
393
500
  </li>
394
501
 
395
502
 
396
- <li class="r2 ">
397
- <span class='object_link'><a href="GCE/Host/Config.html#role_value_delimiter-class_method" title="GCE::Host::Config.role_value_delimiter (method)">role_value_delimiter</a></span>
398
- <small>GCE::Host::Config</small>
503
+ <li class="even ">
504
+ <div class="item">
505
+ <span class='object_link'><a href="GCE/Host/Config.html#role_max_depth-class_method" title="GCE::Host::Config.role_max_depth (method)">role_max_depth</a></span>
506
+ <small>GCE::Host::Config</small>
507
+ </div>
399
508
  </li>
400
509
 
401
510
 
402
- <li class="r1 ">
403
- <span class='object_link'><a href="GCE/Host/HostData.html#roles-instance_method" title="GCE::Host::HostData#roles (method)">#roles</a></span>
404
- <small>GCE::Host::HostData</small>
511
+ <li class="odd ">
512
+ <div class="item">
513
+ <span class='object_link'><a href="GCE/Host/Config.html#role_value_delimiter-class_method" title="GCE::Host::Config.role_value_delimiter (method)">role_value_delimiter</a></span>
514
+ <small>GCE::Host::Config</small>
515
+ </div>
405
516
  </li>
406
517
 
407
518
 
408
- <li class="r2 ">
409
- <span class='object_link'><a href="GCE/Host/Config.html#roles_key-class_method" title="GCE::Host::Config.roles_key (method)">roles_key</a></span>
410
- <small>GCE::Host::Config</small>
519
+ <li class="even ">
520
+ <div class="item">
521
+ <span class='object_link'><a href="GCE/Host/HostData.html#roles-instance_method" title="GCE::Host::HostData#roles (method)">#roles</a></span>
522
+ <small>GCE::Host::HostData</small>
523
+ </div>
524
+ </li>
525
+
526
+
527
+ <li class="odd ">
528
+ <div class="item">
529
+ <span class='object_link'><a href="GCE/Host/Config.html#roles_key-class_method" title="GCE::Host::Config.roles_key (method)">roles_key</a></span>
530
+ <small>GCE::Host::Config</small>
531
+ </div>
411
532
  </li>
412
533
 
413
534
 
414
- <li class="r1 ">
415
- <span class='object_link'><a href="GCE/Host/CLI.html#run-instance_method" title="GCE::Host::CLI#run (method)">#run</a></span>
416
- <small>GCE::Host::CLI</small>
535
+ <li class="even ">
536
+ <div class="item">
537
+ <span class='object_link'><a href="GCE/Host/CLI.html#run-instance_method" title="GCE::Host::CLI#run (method)">#run</a></span>
538
+ <small>GCE::Host::CLI</small>
539
+ </div>
417
540
  </li>
418
541
 
419
542
 
420
- <li class="r2 ">
421
- <span class='object_link'><a href="GCE/Host/HostData.html#running%3F-instance_method" title="GCE::Host::HostData#running? (method)">#running?</a></span>
422
- <small>GCE::Host::HostData</small>
543
+ <li class="odd ">
544
+ <div class="item">
545
+ <span class='object_link'><a href="GCE/Host/HostData.html#running%3F-instance_method" title="GCE::Host::HostData#running? (method)">#running?</a></span>
546
+ <small>GCE::Host::HostData</small>
547
+ </div>
423
548
  </li>
424
549
 
425
550
 
426
- <li class="r1 ">
427
- <span class='object_link'><a href="GCE/Host/StringUtil.html#singularize-class_method" title="GCE::Host::StringUtil.singularize (method)">singularize</a></span>
428
- <small>GCE::Host::StringUtil</small>
551
+ <li class="even ">
552
+ <div class="item">
553
+ <span class='object_link'><a href="GCE/Host/StringUtil.html#singularize-class_method" title="GCE::Host::StringUtil.singularize (method)">singularize</a></span>
554
+ <small>GCE::Host::StringUtil</small>
555
+ </div>
429
556
  </li>
430
557
 
431
558
 
432
- <li class="r2 ">
433
- <span class='object_link'><a href="GCE/Host/HostData.html#staging%3F-instance_method" title="GCE::Host::HostData#staging? (method)">#staging?</a></span>
434
- <small>GCE::Host::HostData</small>
559
+ <li class="odd ">
560
+ <div class="item">
561
+ <span class='object_link'><a href="GCE/Host/HostData.html#staging%3F-instance_method" title="GCE::Host::HostData#staging? (method)">#staging?</a></span>
562
+ <small>GCE::Host::HostData</small>
563
+ </div>
435
564
  </li>
436
565
 
437
566
 
438
- <li class="r1 ">
439
- <span class='object_link'><a href="GCE/Host/HostData.html#start_date-instance_method" title="GCE::Host::HostData#start_date (method)">#start_date</a></span>
440
- <small>GCE::Host::HostData</small>
567
+ <li class="even ">
568
+ <div class="item">
569
+ <span class='object_link'><a href="GCE/Host/HostData.html#start_date-instance_method" title="GCE::Host::HostData#start_date (method)">#start_date</a></span>
570
+ <small>GCE::Host::HostData</small>
571
+ </div>
441
572
  </li>
442
573
 
443
574
 
444
- <li class="r2 ">
445
- <span class='object_link'><a href="GCE/Host/Config.html#status-class_method" title="GCE::Host::Config.status (method)">status</a></span>
446
- <small>GCE::Host::Config</small>
575
+ <li class="odd ">
576
+ <div class="item">
577
+ <span class='object_link'><a href="GCE/Host/Config.html#status-class_method" title="GCE::Host::Config.status (method)">status</a></span>
578
+ <small>GCE::Host::Config</small>
579
+ </div>
447
580
  </li>
448
581
 
449
582
 
450
- <li class="r1 ">
451
- <span class='object_link'><a href="GCE/Host/HostData.html#stopping%3F-instance_method" title="GCE::Host::HostData#stopping? (method)">#stopping?</a></span>
452
- <small>GCE::Host::HostData</small>
583
+ <li class="even ">
584
+ <div class="item">
585
+ <span class='object_link'><a href="GCE/Host/HostData.html#stopping%3F-instance_method" title="GCE::Host::HostData#stopping? (method)">#stopping?</a></span>
586
+ <small>GCE::Host::HostData</small>
587
+ </div>
453
588
  </li>
454
589
 
455
590
 
456
- <li class="r2 ">
457
- <span class='object_link'><a href="GCE/Host/HostData.html#terminated%3F-instance_method" title="GCE::Host::HostData#terminated? (method)">#terminated?</a></span>
458
- <small>GCE::Host::HostData</small>
591
+ <li class="odd ">
592
+ <div class="item">
593
+ <span class='object_link'><a href="GCE/Host/HostData.html#terminated%3F-instance_method" title="GCE::Host::HostData#terminated? (method)">#terminated?</a></span>
594
+ <small>GCE::Host::HostData</small>
595
+ </div>
459
596
  </li>
460
597
 
461
598
 
462
- <li class="r1 ">
463
- <span class='object_link'><a href="GCE/Host/Config.html#timeout_sec-class_method" title="GCE::Host::Config.timeout_sec (method)">timeout_sec</a></span>
464
- <small>GCE::Host::Config</small>
599
+ <li class="even ">
600
+ <div class="item">
601
+ <span class='object_link'><a href="GCE/Host/Config.html#timeout_sec-class_method" title="GCE::Host::Config.timeout_sec (method)">timeout_sec</a></span>
602
+ <small>GCE::Host::Config</small>
603
+ </div>
465
604
  </li>
466
605
 
467
606
 
468
- <li class="r2 ">
469
- <span class='object_link'><a href="GCE/Host/HostData.html#to_hash-instance_method" title="GCE::Host::HostData#to_hash (method)">#to_hash</a></span>
470
- <small>GCE::Host::HostData</small>
607
+ <li class="odd ">
608
+ <div class="item">
609
+ <span class='object_link'><a href="GCE/Host/HostData.html#to_hash-instance_method" title="GCE::Host::HostData#to_hash (method)">#to_hash</a></span>
610
+ <small>GCE::Host::HostData</small>
611
+ </div>
471
612
  </li>
472
613
 
473
614
 
474
- <li class="r1 ">
475
- <span class='object_link'><a href="GCE/Host/StringUtil.html#underscore-class_method" title="GCE::Host::StringUtil.underscore (method)">underscore</a></span>
476
- <small>GCE::Host::StringUtil</small>
615
+ <li class="even ">
616
+ <div class="item">
617
+ <span class='object_link'><a href="GCE/Host/StringUtil.html#underscore-class_method" title="GCE::Host::StringUtil.underscore (method)">underscore</a></span>
618
+ <small>GCE::Host::StringUtil</small>
619
+ </div>
477
620
  </li>
478
621
 
479
622
 
480
- <li class="r2 ">
481
- <span class='object_link'><a href="GCE/Host/RoleData.html#uppers-instance_method" title="GCE::Host::RoleData#uppers (method)">#uppers</a></span>
482
- <small>GCE::Host::RoleData</small>
623
+ <li class="odd ">
624
+ <div class="item">
625
+ <span class='object_link'><a href="GCE/Host/RoleData.html#uppers-instance_method" title="GCE::Host::RoleData#uppers (method)">#uppers</a></span>
626
+ <small>GCE::Host::RoleData</small>
627
+ </div>
483
628
  </li>
484
629
 
485
630
 
486
- <li class="r1 ">
487
- <span class='object_link'><a href="GCE/Host/HostData.html#usages-instance_method" title="GCE::Host::HostData#usages (method)">#usages</a></span>
488
- <small>GCE::Host::HostData</small>
631
+ <li class="even ">
632
+ <div class="item">
633
+ <span class='object_link'><a href="GCE/Host/HostData.html#usages-instance_method" title="GCE::Host::HostData#usages (method)">#usages</a></span>
634
+ <small>GCE::Host::HostData</small>
635
+ </div>
489
636
  </li>
490
637
 
491
638
 
492
- <li class="r2 ">
493
- <span class='object_link'><a href="GCE/Host/HostData.html#zone-instance_method" title="GCE::Host::HostData#zone (method)">#zone</a></span>
494
- <small>GCE::Host::HostData</small>
639
+ <li class="odd ">
640
+ <div class="item">
641
+ <span class='object_link'><a href="GCE/Host/HostData.html#zone-instance_method" title="GCE::Host::HostData#zone (method)">#zone</a></span>
642
+ <small>GCE::Host::HostData</small>
643
+ </div>
495
644
  </li>
496
645
 
497
646
 
647
+
498
648
  </ul>
499
649
  </div>
500
650
  </body>