corl 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (202) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile.lock +1 -1
  3. data/VERSION +1 -1
  4. data/bootstrap/os/ubuntu/06_puppet.sh +1 -1
  5. data/corl.gemspec +171 -3
  6. data/lib/CORL/builder/identity.rb +6 -3
  7. data/lib/CORL/builder/package.rb +3 -3
  8. data/lib/CORL/configuration/file.rb +21 -7
  9. data/lib/CORL/machine/vagrant.rb +3 -3
  10. data/lib/CORL/node/vagrant.rb +2 -5
  11. data/lib/CORL/provisioner/puppetnode.rb +8 -8
  12. data/lib/core/facade.rb +7 -3
  13. data/lib/core/mixin/action/keypair.rb +3 -3
  14. data/lib/core/mixin/action/registration.rb +31 -0
  15. data/lib/core/mixin/lookup.rb +50 -6
  16. data/lib/core/mixin/machine/ssh.rb +4 -4
  17. data/lib/core/plugin/cloud_action.rb +8 -1
  18. data/lib/core/plugin/configuration.rb +6 -7
  19. data/lib/core/plugin/fog_node.rb +7 -0
  20. data/lib/core/plugin/network.rb +31 -0
  21. data/lib/core/plugin/node.rb +182 -117
  22. data/lib/core/vagrant/provisioner/provisioner.rb +1 -1
  23. data/lib/nucleon/action/cloud/config.rb +259 -0
  24. data/lib/nucleon/action/cloud/images.rb +1 -1
  25. data/lib/nucleon/action/cloud/inspect.rb +11 -2
  26. data/lib/nucleon/action/cloud/machines.rb +1 -1
  27. data/lib/nucleon/action/cloud/regions.rb +1 -1
  28. data/lib/nucleon/action/cloud/settings.rb +185 -0
  29. data/lib/nucleon/action/node/IP.rb +1 -1
  30. data/lib/nucleon/action/node/bootstrap.rb +1 -1
  31. data/lib/nucleon/action/node/cache.rb +133 -0
  32. data/lib/nucleon/action/node/fact.rb +119 -0
  33. data/lib/nucleon/action/node/facts.rb +16 -16
  34. data/lib/nucleon/action/node/group.rb +115 -0
  35. data/lib/nucleon/action/node/groups.rb +33 -0
  36. data/lib/nucleon/action/node/identity.rb +75 -0
  37. data/lib/nucleon/action/node/lookup.rb +20 -7
  38. data/lib/nucleon/action/node/seed.rb +6 -6
  39. data/lib/nucleon/action/node/status.rb +76 -0
  40. data/lib/nucleon/action/plugin/create.rb +169 -0
  41. data/lib/nucleon/action/plugin/list.rb +69 -0
  42. data/lib/nucleon/action/plugin/template/nucleon.action.erb +56 -0
  43. data/lib/nucleon/action/plugins.rb +14 -0
  44. data/locales/en.yml +3 -0
  45. data/rdoc/site/0.5.0/CORL/Build.html +757 -0
  46. data/rdoc/site/0.5.0/CORL/Builder/Identity.html +569 -0
  47. data/rdoc/site/0.5.0/CORL/Builder/Package.html +576 -0
  48. data/rdoc/site/0.5.0/CORL/Builder.html +360 -0
  49. data/rdoc/site/0.5.0/CORL/Configuration/File.html +1148 -0
  50. data/rdoc/site/0.5.0/CORL/Configuration.html +359 -0
  51. data/rdoc/site/0.5.0/CORL/Errors.html +359 -0
  52. data/rdoc/site/0.5.0/CORL/Facade.html +899 -0
  53. data/rdoc/site/0.5.0/CORL/Machine/AWS.html +753 -0
  54. data/rdoc/site/0.5.0/CORL/Machine/Fog.html +1289 -0
  55. data/rdoc/site/0.5.0/CORL/Machine/Physical.html +1059 -0
  56. data/rdoc/site/0.5.0/CORL/Machine/Rackspace.html +534 -0
  57. data/rdoc/site/0.5.0/CORL/Machine/Vagrant.html +1320 -0
  58. data/rdoc/site/0.5.0/CORL/Machine.html +363 -0
  59. data/rdoc/site/0.5.0/CORL/Mixin/Action/Keypair.html +592 -0
  60. data/rdoc/site/0.5.0/CORL/Mixin/Action.html +359 -0
  61. data/rdoc/site/0.5.0/CORL/Mixin/Builder/Global.html +604 -0
  62. data/rdoc/site/0.5.0/CORL/Mixin/Builder/Instance.html +696 -0
  63. data/rdoc/site/0.5.0/CORL/Mixin/Builder.html +359 -0
  64. data/rdoc/site/0.5.0/CORL/Mixin/Lookup.html +1139 -0
  65. data/rdoc/site/0.5.0/CORL/Mixin/Machine/SSH.html +675 -0
  66. data/rdoc/site/0.5.0/CORL/Mixin/Machine.html +359 -0
  67. data/rdoc/site/0.5.0/CORL/Mixin/Macro/NetworkSettings.html +484 -0
  68. data/rdoc/site/0.5.0/CORL/Mixin/Macro.html +359 -0
  69. data/rdoc/site/0.5.0/CORL/Mixin.html +363 -0
  70. data/rdoc/site/0.5.0/CORL/Network/CORL.html +411 -0
  71. data/rdoc/site/0.5.0/CORL/Network.html +359 -0
  72. data/rdoc/site/0.5.0/CORL/Node/AWS.html +736 -0
  73. data/rdoc/site/0.5.0/CORL/Node/Fog.html +1212 -0
  74. data/rdoc/site/0.5.0/CORL/Node/Local.html +444 -0
  75. data/rdoc/site/0.5.0/CORL/Node/Rackspace.html +729 -0
  76. data/rdoc/site/0.5.0/CORL/Node/Vagrant.html +1476 -0
  77. data/rdoc/site/0.5.0/CORL/Node.html +363 -0
  78. data/rdoc/site/0.5.0/CORL/Plugin/Builder.html +500 -0
  79. data/rdoc/site/0.5.0/CORL/Plugin/Configuration.html +1271 -0
  80. data/rdoc/site/0.5.0/CORL/Plugin/Machine.html +1299 -0
  81. data/rdoc/site/0.5.0/CORL/Plugin/Network.html +1580 -0
  82. data/rdoc/site/0.5.0/CORL/Plugin/Node.html +4041 -0
  83. data/rdoc/site/0.5.0/CORL/Plugin/Provisioner.html +1115 -0
  84. data/rdoc/site/0.5.0/CORL/Plugin.html +649 -0
  85. data/rdoc/site/0.5.0/CORL/Provisioner/Puppetnode.html +1177 -0
  86. data/rdoc/site/0.5.0/CORL/Provisioner.html +359 -0
  87. data/rdoc/site/0.5.0/CORL/Util/Puppet/Resource.html +1058 -0
  88. data/rdoc/site/0.5.0/CORL/Util/Puppet/ResourceGroup.html +940 -0
  89. data/rdoc/site/0.5.0/CORL/Util/Puppet.html +1107 -0
  90. data/rdoc/site/0.5.0/CORL/Util.html +361 -0
  91. data/rdoc/site/0.5.0/CORL/Vagrant/Config.html +943 -0
  92. data/rdoc/site/0.5.0/CORL/Vagrant.html +438 -0
  93. data/rdoc/site/0.5.0/CORL.html +471 -0
  94. data/rdoc/site/0.5.0/Fog/Compute/AWS/Server.html +443 -0
  95. data/rdoc/site/0.5.0/Fog/Compute/AWS.html +365 -0
  96. data/rdoc/site/0.5.0/Fog/Compute/RackspaceV2/Server.html +428 -0
  97. data/rdoc/site/0.5.0/Fog/Compute/RackspaceV2.html +365 -0
  98. data/rdoc/site/0.5.0/Fog/Compute.html +360 -0
  99. data/rdoc/site/0.5.0/Fog.html +360 -0
  100. data/rdoc/site/0.5.0/Hiera/Backend.html +442 -0
  101. data/rdoc/site/0.5.0/Hiera/Corl_logger.html +469 -0
  102. data/rdoc/site/0.5.0/Hiera.html +366 -0
  103. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Create.html +538 -0
  104. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Hiera.html +566 -0
  105. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Images.html +572 -0
  106. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Inspect.html +524 -0
  107. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Machines.html +567 -0
  108. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Regions.html +567 -0
  109. data/rdoc/site/0.5.0/Nucleon/Action/Cloud/Vagrantfile.html +515 -0
  110. data/rdoc/site/0.5.0/Nucleon/Action/Cloud.html +365 -0
  111. data/rdoc/site/0.5.0/Nucleon/Action/Node/Authorize.html +543 -0
  112. data/rdoc/site/0.5.0/Nucleon/Action/Node/Bootstrap.html +604 -0
  113. data/rdoc/site/0.5.0/Nucleon/Action/Node/Build.html +526 -0
  114. data/rdoc/site/0.5.0/Nucleon/Action/Node/Destroy.html +573 -0
  115. data/rdoc/site/0.5.0/Nucleon/Action/Node/Exec.html +530 -0
  116. data/rdoc/site/0.5.0/Nucleon/Action/Node/Facts.html +456 -0
  117. data/rdoc/site/0.5.0/Nucleon/Action/Node/IP.html +453 -0
  118. data/rdoc/site/0.5.0/Nucleon/Action/Node/Image.html +573 -0
  119. data/rdoc/site/0.5.0/Nucleon/Action/Node/Keypair.html +572 -0
  120. data/rdoc/site/0.5.0/Nucleon/Action/Node/Lookup.html +532 -0
  121. data/rdoc/site/0.5.0/Nucleon/Action/Node/Provision.html +553 -0
  122. data/rdoc/site/0.5.0/Nucleon/Action/Node/Reboot.html +573 -0
  123. data/rdoc/site/0.5.0/Nucleon/Action/Node/Revoke.html +541 -0
  124. data/rdoc/site/0.5.0/Nucleon/Action/Node/SSH.html +583 -0
  125. data/rdoc/site/0.5.0/Nucleon/Action/Node/Seed.html +602 -0
  126. data/rdoc/site/0.5.0/Nucleon/Action/Node/Spawn.html +675 -0
  127. data/rdoc/site/0.5.0/Nucleon/Action/Node/Start.html +573 -0
  128. data/rdoc/site/0.5.0/Nucleon/Action/Node/Stop.html +573 -0
  129. data/rdoc/site/0.5.0/Nucleon/Action/Node.html +376 -0
  130. data/rdoc/site/0.5.0/Nucleon/Action.html +383 -0
  131. data/rdoc/site/0.5.0/Nucleon/Config.html +377 -0
  132. data/rdoc/site/0.5.0/Nucleon/Event/Puppet.html +693 -0
  133. data/rdoc/site/0.5.0/Nucleon/Event.html +359 -0
  134. data/rdoc/site/0.5.0/Nucleon/Plugin/Base.html +365 -0
  135. data/rdoc/site/0.5.0/Nucleon/Plugin/CloudAction.html +838 -0
  136. data/rdoc/site/0.5.0/Nucleon/Plugin.html +360 -0
  137. data/rdoc/site/0.5.0/Nucleon/Template/Environment.html +548 -0
  138. data/rdoc/site/0.5.0/Nucleon/Template.html +359 -0
  139. data/rdoc/site/0.5.0/Nucleon.html +387 -0
  140. data/rdoc/site/0.5.0/Object.html +378 -0
  141. data/rdoc/site/0.5.0/Puppet/DataBinding/Corl.html +365 -0
  142. data/rdoc/site/0.5.0/Puppet/DataBinding.html +358 -0
  143. data/rdoc/site/0.5.0/Puppet/Indirector/Corl.html +477 -0
  144. data/rdoc/site/0.5.0/Puppet/Indirector.html +358 -0
  145. data/rdoc/site/0.5.0/Puppet/Parser/Functions.html +500 -0
  146. data/rdoc/site/0.5.0/Puppet/Parser.html +358 -0
  147. data/rdoc/site/0.5.0/Puppet.html +358 -0
  148. data/rdoc/site/0.5.0/README_rdoc.html +360 -0
  149. data/rdoc/site/0.5.0/Vagrant/Config/Loader.html +419 -0
  150. data/rdoc/site/0.5.0/Vagrant/Config.html +359 -0
  151. data/rdoc/site/0.5.0/Vagrant/Vagrantfile.html +412 -0
  152. data/rdoc/site/0.5.0/Vagrant.html +366 -0
  153. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action/DeleteCache.html +422 -0
  154. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action/InitKeys.html +428 -0
  155. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action/LinkNetwork.html +426 -0
  156. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Action.html +361 -0
  157. data/rdoc/site/0.5.0/VagrantPlugins/CORL/BaseAction.html +511 -0
  158. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Command/Launcher.html +553 -0
  159. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Command.html +359 -0
  160. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Config/CORL.html +752 -0
  161. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Config.html +359 -0
  162. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Plugin.html +365 -0
  163. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Provisioner/CORL.html +556 -0
  164. data/rdoc/site/0.5.0/VagrantPlugins/CORL/Provisioner.html +359 -0
  165. data/rdoc/site/0.5.0/VagrantPlugins/CORL.html +366 -0
  166. data/rdoc/site/0.5.0/VagrantPlugins.html +366 -0
  167. data/rdoc/site/0.5.0/created.rid +103 -0
  168. data/rdoc/site/0.5.0/images/add.png +0 -0
  169. data/rdoc/site/0.5.0/images/brick.png +0 -0
  170. data/rdoc/site/0.5.0/images/brick_link.png +0 -0
  171. data/rdoc/site/0.5.0/images/bug.png +0 -0
  172. data/rdoc/site/0.5.0/images/bullet_black.png +0 -0
  173. data/rdoc/site/0.5.0/images/bullet_toggle_minus.png +0 -0
  174. data/rdoc/site/0.5.0/images/bullet_toggle_plus.png +0 -0
  175. data/rdoc/site/0.5.0/images/date.png +0 -0
  176. data/rdoc/site/0.5.0/images/delete.png +0 -0
  177. data/rdoc/site/0.5.0/images/find.png +0 -0
  178. data/rdoc/site/0.5.0/images/loadingAnimation.gif +0 -0
  179. data/rdoc/site/0.5.0/images/macFFBgHack.png +0 -0
  180. data/rdoc/site/0.5.0/images/package.png +0 -0
  181. data/rdoc/site/0.5.0/images/page_green.png +0 -0
  182. data/rdoc/site/0.5.0/images/page_white_text.png +0 -0
  183. data/rdoc/site/0.5.0/images/page_white_width.png +0 -0
  184. data/rdoc/site/0.5.0/images/plugin.png +0 -0
  185. data/rdoc/site/0.5.0/images/ruby.png +0 -0
  186. data/rdoc/site/0.5.0/images/tag_blue.png +0 -0
  187. data/rdoc/site/0.5.0/images/tag_green.png +0 -0
  188. data/rdoc/site/0.5.0/images/transparent.png +0 -0
  189. data/rdoc/site/0.5.0/images/wrench.png +0 -0
  190. data/rdoc/site/0.5.0/images/wrench_orange.png +0 -0
  191. data/rdoc/site/0.5.0/images/zoom.png +0 -0
  192. data/rdoc/site/0.5.0/index.html +359 -0
  193. data/rdoc/site/0.5.0/js/darkfish.js +155 -0
  194. data/rdoc/site/0.5.0/js/jquery.js +18 -0
  195. data/rdoc/site/0.5.0/js/navigation.js +142 -0
  196. data/rdoc/site/0.5.0/js/search.js +94 -0
  197. data/rdoc/site/0.5.0/js/search_index.js +1 -0
  198. data/rdoc/site/0.5.0/js/searcher.js +228 -0
  199. data/rdoc/site/0.5.0/rdoc.css +543 -0
  200. data/rdoc/site/0.5.0/table_of_contents.html +1797 -0
  201. metadata +171 -3
  202. data/lib/nucleon/action/cloud/hiera.rb +0 -61
@@ -0,0 +1,757 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class CORL::Build - corl 0.5.0</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/core/build.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link">Core
63
+
64
+ </nav>
65
+
66
+ <!-- Included Modules -->
67
+ <nav id="includes-section" class="section">
68
+ <h3 class="section-header">Included Modules</h3>
69
+
70
+ <ul class="link-list">
71
+
72
+
73
+ <li><span class="include">Parallel</span>
74
+
75
+
76
+ </ul>
77
+ </nav>
78
+
79
+ <!-- Method Quickref -->
80
+ <nav id="method-list-section" class="section">
81
+ <h3 class="section-header">Methods</h3>
82
+
83
+ <ul class="link-list">
84
+
85
+ <li><a href="#method-c-new">::new</a>
86
+
87
+ <li><a href="#method-i-build_lock">#build_lock</a>
88
+
89
+ <li><a href="#method-i-config">#config</a>
90
+
91
+ <li><a href="#method-i-import">#import</a>
92
+
93
+ <li><a href="#method-i-locations">#locations</a>
94
+
95
+ <li><a href="#method-i-manage">#manage</a>
96
+
97
+ <li><a href="#method-i-method_missing">#method_missing</a>
98
+
99
+ <li><a href="#method-i-register">#register</a>
100
+
101
+ <li><a href="#method-i-remove_location">#remove_location</a>
102
+
103
+ <li><a href="#method-i-set_location">#set_location</a>
104
+
105
+ </ul>
106
+ </nav>
107
+
108
+ </div>
109
+
110
+ <div id="project-metadata">
111
+ <nav id="fileindex-section" class="section project-section">
112
+ <h3 class="section-header">Pages</h3>
113
+
114
+ <ul>
115
+
116
+ <li class="file"><a href="../README_rdoc.html">README</a>
117
+
118
+ </ul>
119
+ </nav>
120
+
121
+ <nav id="classindex-section" class="section project-section">
122
+ <h3 class="section-header">Class and Module Index</h3>
123
+
124
+ <ul class="link-list">
125
+
126
+ <li><a href="../CORL.html">CORL</a>
127
+
128
+ <li><a href="../CORL/Build.html">CORL::Build</a>
129
+
130
+ <li><a href="../CORL/Builder.html">CORL::Builder</a>
131
+
132
+ <li><a href="../CORL/Builder/Identity.html">CORL::Builder::Identity</a>
133
+
134
+ <li><a href="../CORL/Builder/Package.html">CORL::Builder::Package</a>
135
+
136
+ <li><a href="../CORL/Configuration.html">CORL::Configuration</a>
137
+
138
+ <li><a href="../CORL/Configuration/File.html">CORL::Configuration::File</a>
139
+
140
+ <li><a href="../CORL/Errors.html">CORL::Errors</a>
141
+
142
+ <li><a href="../CORL/Facade.html">CORL::Facade</a>
143
+
144
+ <li><a href="../CORL/Machine.html">CORL::Machine</a>
145
+
146
+ <li><a href="../CORL/Machine/AWS.html">CORL::Machine::AWS</a>
147
+
148
+ <li><a href="../CORL/Machine/Fog.html">CORL::Machine::Fog</a>
149
+
150
+ <li><a href="../CORL/Machine/Physical.html">CORL::Machine::Physical</a>
151
+
152
+ <li><a href="../CORL/Machine/Rackspace.html">CORL::Machine::Rackspace</a>
153
+
154
+ <li><a href="../CORL/Machine/Vagrant.html">CORL::Machine::Vagrant</a>
155
+
156
+ <li><a href="../CORL/Mixin.html">CORL::Mixin</a>
157
+
158
+ <li><a href="../CORL/Mixin/Action.html">CORL::Mixin::Action</a>
159
+
160
+ <li><a href="../CORL/Mixin/Action/Keypair.html">CORL::Mixin::Action::Keypair</a>
161
+
162
+ <li><a href="../CORL/Mixin/Builder.html">CORL::Mixin::Builder</a>
163
+
164
+ <li><a href="../CORL/Mixin/Builder/Global.html">CORL::Mixin::Builder::Global</a>
165
+
166
+ <li><a href="../CORL/Mixin/Builder/Instance.html">CORL::Mixin::Builder::Instance</a>
167
+
168
+ <li><a href="../CORL/Mixin/Lookup.html">CORL::Mixin::Lookup</a>
169
+
170
+ <li><a href="../CORL/Mixin/Machine.html">CORL::Mixin::Machine</a>
171
+
172
+ <li><a href="../CORL/Mixin/Machine/SSH.html">CORL::Mixin::Machine::SSH</a>
173
+
174
+ <li><a href="../CORL/Mixin/Macro.html">CORL::Mixin::Macro</a>
175
+
176
+ <li><a href="../CORL/Mixin/Macro/NetworkSettings.html">CORL::Mixin::Macro::NetworkSettings</a>
177
+
178
+ <li><a href="../CORL/Network.html">CORL::Network</a>
179
+
180
+ <li><a href="../CORL/Network/CORL.html">CORL::Network::CORL</a>
181
+
182
+ <li><a href="../CORL/Node.html">CORL::Node</a>
183
+
184
+ <li><a href="../CORL/Node/AWS.html">CORL::Node::AWS</a>
185
+
186
+ <li><a href="../CORL/Node/Fog.html">CORL::Node::Fog</a>
187
+
188
+ <li><a href="../CORL/Node/Local.html">CORL::Node::Local</a>
189
+
190
+ <li><a href="../CORL/Node/Rackspace.html">CORL::Node::Rackspace</a>
191
+
192
+ <li><a href="../CORL/Node/Vagrant.html">CORL::Node::Vagrant</a>
193
+
194
+ <li><a href="../CORL/Plugin.html">CORL::Plugin</a>
195
+
196
+ <li><a href="../CORL/Plugin/Builder.html">CORL::Plugin::Builder</a>
197
+
198
+ <li><a href="../CORL/Plugin/Configuration.html">CORL::Plugin::Configuration</a>
199
+
200
+ <li><a href="../CORL/Plugin/Machine.html">CORL::Plugin::Machine</a>
201
+
202
+ <li><a href="../CORL/Plugin/Network.html">CORL::Plugin::Network</a>
203
+
204
+ <li><a href="../CORL/Plugin/Node.html">CORL::Plugin::Node</a>
205
+
206
+ <li><a href="../CORL/Plugin/Provisioner.html">CORL::Plugin::Provisioner</a>
207
+
208
+ <li><a href="../CORL/Provisioner.html">CORL::Provisioner</a>
209
+
210
+ <li><a href="../CORL/Provisioner/Puppetnode.html">CORL::Provisioner::Puppetnode</a>
211
+
212
+ <li><a href="../CORL/Util.html">CORL::Util</a>
213
+
214
+ <li><a href="../CORL/Util/Puppet.html">CORL::Util::Puppet</a>
215
+
216
+ <li><a href="../CORL/Util/Puppet/Resource.html">CORL::Util::Puppet::Resource</a>
217
+
218
+ <li><a href="../CORL/Util/Puppet/ResourceGroup.html">CORL::Util::Puppet::ResourceGroup</a>
219
+
220
+ <li><a href="../CORL/Vagrant.html">CORL::Vagrant</a>
221
+
222
+ <li><a href="../CORL/Vagrant/Config.html">CORL::Vagrant::Config</a>
223
+
224
+ <li><a href="../Nucleon.html">Nucleon</a>
225
+
226
+ <li><a href="../Nucleon/Action.html">Nucleon::Action</a>
227
+
228
+ <li><a href="../Nucleon/Action/Cloud.html">Nucleon::Action::Cloud</a>
229
+
230
+ <li><a href="../Nucleon/Action/Cloud/Create.html">Nucleon::Action::Cloud::Create</a>
231
+
232
+ <li><a href="../Nucleon/Action/Cloud/Hiera.html">Nucleon::Action::Cloud::Hiera</a>
233
+
234
+ <li><a href="../Nucleon/Action/Cloud/Images.html">Nucleon::Action::Cloud::Images</a>
235
+
236
+ <li><a href="../Nucleon/Action/Cloud/Inspect.html">Nucleon::Action::Cloud::Inspect</a>
237
+
238
+ <li><a href="../Nucleon/Action/Cloud/Machines.html">Nucleon::Action::Cloud::Machines</a>
239
+
240
+ <li><a href="../Nucleon/Action/Cloud/Regions.html">Nucleon::Action::Cloud::Regions</a>
241
+
242
+ <li><a href="../Nucleon/Action/Cloud/Vagrantfile.html">Nucleon::Action::Cloud::Vagrantfile</a>
243
+
244
+ <li><a href="../Nucleon/Action/Node.html">Nucleon::Action::Node</a>
245
+
246
+ <li><a href="../Nucleon/Action/Node/Authorize.html">Nucleon::Action::Node::Authorize</a>
247
+
248
+ <li><a href="../Nucleon/Action/Node/Bootstrap.html">Nucleon::Action::Node::Bootstrap</a>
249
+
250
+ <li><a href="../Nucleon/Action/Node/Build.html">Nucleon::Action::Node::Build</a>
251
+
252
+ <li><a href="../Nucleon/Action/Node/Destroy.html">Nucleon::Action::Node::Destroy</a>
253
+
254
+ <li><a href="../Nucleon/Action/Node/Exec.html">Nucleon::Action::Node::Exec</a>
255
+
256
+ <li><a href="../Nucleon/Action/Node/Facts.html">Nucleon::Action::Node::Facts</a>
257
+
258
+ <li><a href="../Nucleon/Action/Node/IP.html">Nucleon::Action::Node::IP</a>
259
+
260
+ <li><a href="../Nucleon/Action/Node/Image.html">Nucleon::Action::Node::Image</a>
261
+
262
+ <li><a href="../Nucleon/Action/Node/Keypair.html">Nucleon::Action::Node::Keypair</a>
263
+
264
+ <li><a href="../Nucleon/Action/Node/Lookup.html">Nucleon::Action::Node::Lookup</a>
265
+
266
+ <li><a href="../Nucleon/Action/Node/Provision.html">Nucleon::Action::Node::Provision</a>
267
+
268
+ <li><a href="../Nucleon/Action/Node/Reboot.html">Nucleon::Action::Node::Reboot</a>
269
+
270
+ <li><a href="../Nucleon/Action/Node/Revoke.html">Nucleon::Action::Node::Revoke</a>
271
+
272
+ <li><a href="../Nucleon/Action/Node/SSH.html">Nucleon::Action::Node::SSH</a>
273
+
274
+ <li><a href="../Nucleon/Action/Node/Seed.html">Nucleon::Action::Node::Seed</a>
275
+
276
+ <li><a href="../Nucleon/Action/Node/Spawn.html">Nucleon::Action::Node::Spawn</a>
277
+
278
+ <li><a href="../Nucleon/Action/Node/Start.html">Nucleon::Action::Node::Start</a>
279
+
280
+ <li><a href="../Nucleon/Action/Node/Stop.html">Nucleon::Action::Node::Stop</a>
281
+
282
+ <li><a href="../Nucleon/Config.html">Nucleon::Config</a>
283
+
284
+ <li><a href="../Nucleon/Event.html">Nucleon::Event</a>
285
+
286
+ <li><a href="../Nucleon/Event/Puppet.html">Nucleon::Event::Puppet</a>
287
+
288
+ <li><a href="../Nucleon/Plugin.html">Nucleon::Plugin</a>
289
+
290
+ <li><a href="../Nucleon/Plugin/Base.html">Nucleon::Plugin::Base</a>
291
+
292
+ <li><a href="../Nucleon/Plugin/CloudAction.html">Nucleon::Plugin::CloudAction</a>
293
+
294
+ <li><a href="../Nucleon/Template.html">Nucleon::Template</a>
295
+
296
+ <li><a href="../Nucleon/Template/Environment.html">Nucleon::Template::Environment</a>
297
+
298
+ <li><a href="../VagrantPlugins.html">VagrantPlugins</a>
299
+
300
+ <li><a href="../VagrantPlugins/CORL.html">VagrantPlugins::CORL</a>
301
+
302
+ <li><a href="../VagrantPlugins/CORL/Action.html">VagrantPlugins::CORL::Action</a>
303
+
304
+ <li><a href="../VagrantPlugins/CORL/Action/DeleteCache.html">VagrantPlugins::CORL::Action::DeleteCache</a>
305
+
306
+ <li><a href="../VagrantPlugins/CORL/Action/InitKeys.html">VagrantPlugins::CORL::Action::InitKeys</a>
307
+
308
+ <li><a href="../VagrantPlugins/CORL/Action/LinkNetwork.html">VagrantPlugins::CORL::Action::LinkNetwork</a>
309
+
310
+ <li><a href="../VagrantPlugins/CORL/BaseAction.html">VagrantPlugins::CORL::BaseAction</a>
311
+
312
+ <li><a href="../VagrantPlugins/CORL/Command.html">VagrantPlugins::CORL::Command</a>
313
+
314
+ <li><a href="../VagrantPlugins/CORL/Command/Launcher.html">VagrantPlugins::CORL::Command::Launcher</a>
315
+
316
+ <li><a href="../VagrantPlugins/CORL/Config.html">VagrantPlugins::CORL::Config</a>
317
+
318
+ <li><a href="../VagrantPlugins/CORL/Config/CORL.html">VagrantPlugins::CORL::Config::CORL</a>
319
+
320
+ <li><a href="../VagrantPlugins/CORL/Plugin.html">VagrantPlugins::CORL::Plugin</a>
321
+
322
+ <li><a href="../VagrantPlugins/CORL/Provisioner.html">VagrantPlugins::CORL::Provisioner</a>
323
+
324
+ <li><a href="../VagrantPlugins/CORL/Provisioner/CORL.html">VagrantPlugins::CORL::Provisioner::CORL</a>
325
+
326
+ <li><a href="../Puppet.html">Puppet</a>
327
+
328
+ <li><a href="../Puppet/DataBinding.html">Puppet::DataBinding</a>
329
+
330
+ <li><a href="../Puppet/DataBinding/Corl.html">Puppet::DataBinding::Corl</a>
331
+
332
+ <li><a href="../Puppet/Indirector.html">Puppet::Indirector</a>
333
+
334
+ <li><a href="../Puppet/Indirector/Corl.html">Puppet::Indirector::Corl</a>
335
+
336
+ <li><a href="../Puppet/Parser.html">Puppet::Parser</a>
337
+
338
+ <li><a href="../Puppet/Parser/Functions.html">Puppet::Parser::Functions</a>
339
+
340
+ <li><a href="../Fog.html">Fog</a>
341
+
342
+ <li><a href="../Fog/Compute.html">Fog::Compute</a>
343
+
344
+ <li><a href="../Fog/Compute/AWS.html">Fog::Compute::AWS</a>
345
+
346
+ <li><a href="../Fog/Compute/AWS/Server.html">Fog::Compute::AWS::Server</a>
347
+
348
+ <li><a href="../Fog/Compute/RackspaceV2.html">Fog::Compute::RackspaceV2</a>
349
+
350
+ <li><a href="../Fog/Compute/RackspaceV2/Server.html">Fog::Compute::RackspaceV2::Server</a>
351
+
352
+ <li><a href="../Vagrant.html">Vagrant</a>
353
+
354
+ <li><a href="../Vagrant/Config.html">Vagrant::Config</a>
355
+
356
+ <li><a href="../Vagrant/Config/Loader.html">Vagrant::Config::Loader</a>
357
+
358
+ <li><a href="../Vagrant/Vagrantfile.html">Vagrant::Vagrantfile</a>
359
+
360
+ <li><a href="../Hiera.html">Hiera</a>
361
+
362
+ <li><a href="../Hiera/Backend.html">Hiera::Backend</a>
363
+
364
+ <li><a href="../Hiera/Corl_logger.html">Hiera::Corl_logger</a>
365
+
366
+ <li><a href="../Object.html">Object</a>
367
+
368
+ </ul>
369
+ </nav>
370
+
371
+ </div>
372
+ </nav>
373
+
374
+ <div id="documentation">
375
+ <h1 class="class">class CORL::Build</h1>
376
+
377
+ <div id="description" class="description">
378
+
379
+ </div><!-- description -->
380
+
381
+
382
+
383
+
384
+ <section id="5Buntitled-5D" class="documentation-section">
385
+
386
+
387
+
388
+
389
+
390
+
391
+
392
+
393
+ <!-- Methods -->
394
+
395
+ <section id="public-class-5Buntitled-5D-method-details" class="method-section section">
396
+ <h3 class="section-header">Public Class Methods</h3>
397
+
398
+
399
+ <div id="method-c-new" class="method-detail ">
400
+
401
+ <div class="method-heading">
402
+ <span class="method-name">new</span><span
403
+ class="method-args">()</span>
404
+ <span class="method-click-advice">click to toggle source</span>
405
+ </div>
406
+
407
+
408
+ <div class="method-description">
409
+
410
+
411
+
412
+
413
+
414
+ <div class="method-source-code" id="new-source">
415
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 10</span>
416
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">initialize</span>
417
+ <span class="ruby-ivar">@config</span> = <span class="ruby-constant">Config</span>.<span class="ruby-identifier">new</span>
418
+ <span class="ruby-ivar">@locations</span> = <span class="ruby-constant">Config</span>.<span class="ruby-identifier">new</span>
419
+
420
+ <span class="ruby-ivar">@plurals</span> = {}
421
+ <span class="ruby-ivar">@types</span> = {}
422
+ <span class="ruby-keyword">end</span></pre>
423
+ </div><!-- new-source -->
424
+
425
+ </div>
426
+
427
+
428
+
429
+
430
+ </div><!-- new-method -->
431
+
432
+
433
+ </section><!-- public-class-method-details -->
434
+
435
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
436
+ <h3 class="section-header">Public Instance Methods</h3>
437
+
438
+
439
+ <div id="method-i-build_lock" class="method-detail ">
440
+
441
+ <div class="method-heading">
442
+ <span class="method-name">build_lock</span><span
443
+ class="method-args">()</span>
444
+ <span class="method-click-advice">click to toggle source</span>
445
+ </div>
446
+
447
+
448
+ <div class="method-description">
449
+
450
+
451
+
452
+
453
+
454
+ <div class="method-source-code" id="build_lock-source">
455
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 25</span>
456
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">build_lock</span>
457
+ <span class="ruby-identifier">@@build_lock</span>
458
+ <span class="ruby-keyword">end</span></pre>
459
+ </div><!-- build_lock-source -->
460
+
461
+ </div>
462
+
463
+
464
+
465
+
466
+ </div><!-- build_lock-method -->
467
+
468
+
469
+ <div id="method-i-config" class="method-detail ">
470
+
471
+ <div class="method-heading">
472
+ <span class="method-name">config</span><span
473
+ class="method-args">()</span>
474
+ <span class="method-click-advice">click to toggle source</span>
475
+ </div>
476
+
477
+
478
+ <div class="method-description">
479
+
480
+
481
+
482
+
483
+
484
+ <div class="method-source-code" id="config-source">
485
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 47</span>
486
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">config</span>
487
+ <span class="ruby-ivar">@config</span>
488
+ <span class="ruby-keyword">end</span></pre>
489
+ </div><!-- config-source -->
490
+
491
+ </div>
492
+
493
+
494
+
495
+
496
+ </div><!-- config-method -->
497
+
498
+
499
+ <div id="method-i-import" class="method-detail ">
500
+
501
+ <div class="method-heading">
502
+ <span class="method-name">import</span><span
503
+ class="method-args">(config)</span>
504
+ <span class="method-click-advice">click to toggle source</span>
505
+ </div>
506
+
507
+
508
+ <div class="method-description">
509
+
510
+
511
+
512
+
513
+
514
+ <div class="method-source-code" id="import-source">
515
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 51</span>
516
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">import</span>(<span class="ruby-identifier">config</span>)
517
+ <span class="ruby-ivar">@config</span>.<span class="ruby-identifier">import</span>(<span class="ruby-identifier">config</span>)
518
+ <span class="ruby-keyword">end</span></pre>
519
+ </div><!-- import-source -->
520
+
521
+ </div>
522
+
523
+
524
+
525
+
526
+ </div><!-- import-method -->
527
+
528
+
529
+ <div id="method-i-locations" class="method-detail ">
530
+
531
+ <div class="method-heading">
532
+ <span class="method-name">locations</span><span
533
+ class="method-args">()</span>
534
+ <span class="method-click-advice">click to toggle source</span>
535
+ </div>
536
+
537
+
538
+ <div class="method-description">
539
+
540
+
541
+
542
+
543
+
544
+ <div class="method-source-code" id="locations-source">
545
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 58</span>
546
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">locations</span>
547
+ <span class="ruby-ivar">@locations</span>
548
+ <span class="ruby-keyword">end</span></pre>
549
+ </div><!-- locations-source -->
550
+
551
+ </div>
552
+
553
+
554
+
555
+
556
+ </div><!-- locations-method -->
557
+
558
+
559
+ <div id="method-i-manage" class="method-detail ">
560
+
561
+ <div class="method-heading">
562
+ <span class="method-name">manage</span><span
563
+ class="method-args">(plugin_type, options = {})</span>
564
+ <span class="method-click-advice">click to toggle source</span>
565
+ </div>
566
+
567
+
568
+ <div class="method-description">
569
+
570
+
571
+
572
+
573
+
574
+ <div class="method-source-code" id="manage-source">
575
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 108</span>
576
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">manage</span>(<span class="ruby-identifier">plugin_type</span>, <span class="ruby-identifier">options</span> = {})
577
+ <span class="ruby-constant">CORL</span>.<span class="ruby-identifier">send</span>(<span class="ruby-identifier">plugin_type</span>, <span class="ruby-identifier">options</span>)
578
+ <span class="ruby-keyword">end</span></pre>
579
+ </div><!-- manage-source -->
580
+
581
+ </div>
582
+
583
+
584
+
585
+
586
+ </div><!-- manage-method -->
587
+
588
+
589
+ <div id="method-i-method_missing" class="method-detail ">
590
+
591
+ <div class="method-heading">
592
+ <span class="method-name">method_missing</span><span
593
+ class="method-args">(method, *args, &code)</span>
594
+ <span class="method-click-advice">click to toggle source</span>
595
+ </div>
596
+
597
+
598
+ <div class="method-description">
599
+
600
+
601
+
602
+
603
+
604
+ <div class="method-source-code" id="method_missing-source">
605
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 73</span>
606
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">method_missing</span>(<span class="ruby-identifier">method</span>, *<span class="ruby-identifier">args</span>, &amp;<span class="ruby-identifier">code</span>)
607
+ <span class="ruby-identifier">success</span> = <span class="ruby-keyword">false</span>
608
+ <span class="ruby-identifier">result</span> = <span class="ruby-keyword">nil</span>
609
+
610
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">method</span>.<span class="ruby-identifier">to_s</span>.<span class="ruby-identifier">match</span>(<span class="ruby-regexp">/^set\_([a-z].*)$/</span>)
611
+ <span class="ruby-identifier">name</span> = <span class="ruby-node">$1</span>.<span class="ruby-identifier">to_sym</span>
612
+
613
+ <span class="ruby-keyword">if</span> <span class="ruby-ivar">@types</span>.<span class="ruby-identifier">has_key?</span>(<span class="ruby-identifier">name</span>) <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">length</span> <span class="ruby-operator">&gt;</span> <span class="ruby-value">2</span>
614
+ <span class="ruby-ivar">@types</span>[<span class="ruby-identifier">name</span>].<span class="ruby-identifier">set</span>([ <span class="ruby-identifier">args</span>[<span class="ruby-value">0</span>], <span class="ruby-identifier">args</span>[<span class="ruby-value">1</span>] ], <span class="ruby-identifier">args</span>[<span class="ruby-value">2</span>]) <span class="ruby-keyword">if</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">length</span> <span class="ruby-operator">&gt;</span> <span class="ruby-value">2</span>
615
+ <span class="ruby-identifier">success</span> = <span class="ruby-keyword">true</span>
616
+ <span class="ruby-keyword">end</span>
617
+
618
+ <span class="ruby-keyword">elsif</span> <span class="ruby-identifier">method</span>.<span class="ruby-identifier">to_s</span>.<span class="ruby-identifier">match</span>(<span class="ruby-regexp">/^remove\_([a-z].*)$/</span>)
619
+ <span class="ruby-identifier">name</span> = <span class="ruby-node">$1</span>.<span class="ruby-identifier">to_sym</span>
620
+
621
+ <span class="ruby-keyword">if</span> <span class="ruby-ivar">@types</span>.<span class="ruby-identifier">has_key?</span>(<span class="ruby-identifier">name</span>) <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-identifier">args</span>.<span class="ruby-identifier">length</span> <span class="ruby-operator">&gt;</span> <span class="ruby-value">0</span>
622
+ <span class="ruby-ivar">@types</span>[<span class="ruby-identifier">name</span>].<span class="ruby-identifier">delete</span>([ <span class="ruby-identifier">args</span>[<span class="ruby-value">0</span>], <span class="ruby-identifier">args</span>[<span class="ruby-value">1</span>] ])
623
+ <span class="ruby-identifier">success</span> = <span class="ruby-keyword">true</span>
624
+ <span class="ruby-keyword">end</span>
625
+
626
+ <span class="ruby-keyword">else</span>
627
+ <span class="ruby-identifier">name</span> = <span class="ruby-ivar">@plurals</span>[<span class="ruby-identifier">method</span>.<span class="ruby-identifier">to_sym</span>]
628
+
629
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">name</span> <span class="ruby-operator">&amp;&amp;</span> <span class="ruby-ivar">@types</span>.<span class="ruby-identifier">has_key?</span>(<span class="ruby-identifier">name</span>)
630
+ <span class="ruby-identifier">result</span> = <span class="ruby-ivar">@types</span>[<span class="ruby-identifier">name</span>]
631
+ <span class="ruby-identifier">success</span> = <span class="ruby-keyword">true</span>
632
+ <span class="ruby-keyword">end</span>
633
+ <span class="ruby-keyword">end</span>
634
+ <span class="ruby-keyword">super</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">success</span> <span class="ruby-comment"># Raise NoMethodError</span>
635
+ <span class="ruby-identifier">result</span>
636
+ <span class="ruby-keyword">end</span></pre>
637
+ </div><!-- method_missing-source -->
638
+
639
+ </div>
640
+
641
+
642
+
643
+
644
+ </div><!-- method_missing-method -->
645
+
646
+
647
+ <div id="method-i-register" class="method-detail ">
648
+
649
+ <div class="method-heading">
650
+ <span class="method-name">register</span><span
651
+ class="method-args">(type, plural = nil)</span>
652
+ <span class="method-click-advice">click to toggle source</span>
653
+ </div>
654
+
655
+
656
+ <div class="method-description">
657
+
658
+
659
+
660
+
661
+
662
+ <div class="method-source-code" id="register-source">
663
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 32</span>
664
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">register</span>(<span class="ruby-identifier">type</span>, <span class="ruby-identifier">plural</span> = <span class="ruby-keyword">nil</span>)
665
+ <span class="ruby-identifier">type</span> = <span class="ruby-identifier">type</span>.<span class="ruby-identifier">to_sym</span>
666
+
667
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">plural</span>
668
+ <span class="ruby-identifier">plural</span> = <span class="ruby-identifier">plural</span>.<span class="ruby-identifier">to_sym</span>
669
+ <span class="ruby-keyword">else</span>
670
+ <span class="ruby-identifier">plural</span> = <span class="ruby-node">&quot;#{type}s&quot;</span>.<span class="ruby-identifier">to_sym</span>
671
+ <span class="ruby-keyword">end</span>
672
+ <span class="ruby-ivar">@plurals</span>[<span class="ruby-identifier">plural</span>] = <span class="ruby-identifier">type</span>
673
+ <span class="ruby-ivar">@types</span>[<span class="ruby-identifier">type</span>] = <span class="ruby-constant">Config</span>.<span class="ruby-identifier">new</span>
674
+ <span class="ruby-keyword">end</span></pre>
675
+ </div><!-- register-source -->
676
+
677
+ </div>
678
+
679
+
680
+
681
+
682
+ </div><!-- register-method -->
683
+
684
+
685
+ <div id="method-i-remove_location" class="method-detail ">
686
+
687
+ <div class="method-heading">
688
+ <span class="method-name">remove_location</span><span
689
+ class="method-args">(provider, name = nil)</span>
690
+ <span class="method-click-advice">click to toggle source</span>
691
+ </div>
692
+
693
+
694
+ <div class="method-description">
695
+
696
+
697
+
698
+
699
+
700
+ <div class="method-source-code" id="remove_location-source">
701
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 66</span>
702
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">remove_location</span>(<span class="ruby-identifier">provider</span>, <span class="ruby-identifier">name</span> = <span class="ruby-keyword">nil</span>)
703
+ <span class="ruby-ivar">@locations</span>.<span class="ruby-identifier">delete</span>([ <span class="ruby-identifier">provider</span>, <span class="ruby-identifier">name</span> ])
704
+ <span class="ruby-keyword">end</span></pre>
705
+ </div><!-- remove_location-source -->
706
+
707
+ </div>
708
+
709
+
710
+
711
+
712
+ </div><!-- remove_location-method -->
713
+
714
+
715
+ <div id="method-i-set_location" class="method-detail ">
716
+
717
+ <div class="method-heading">
718
+ <span class="method-name">set_location</span><span
719
+ class="method-args">(provider, name, directory)</span>
720
+ <span class="method-click-advice">click to toggle source</span>
721
+ </div>
722
+
723
+
724
+ <div class="method-description">
725
+
726
+
727
+
728
+
729
+
730
+ <div class="method-source-code" id="set_location-source">
731
+ <pre><span class="ruby-comment"># File lib/core/build.rb, line 62</span>
732
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">set_location</span>(<span class="ruby-identifier">provider</span>, <span class="ruby-identifier">name</span>, <span class="ruby-identifier">directory</span>)
733
+ <span class="ruby-ivar">@locations</span>.<span class="ruby-identifier">set</span>([ <span class="ruby-identifier">provider</span>, <span class="ruby-identifier">name</span> ], <span class="ruby-identifier">directory</span>)
734
+ <span class="ruby-keyword">end</span></pre>
735
+ </div><!-- set_location-source -->
736
+
737
+ </div>
738
+
739
+
740
+
741
+
742
+ </div><!-- set_location-method -->
743
+
744
+
745
+ </section><!-- public-instance-method-details -->
746
+
747
+ </section><!-- 5Buntitled-5D -->
748
+
749
+ </div><!-- documentation -->
750
+
751
+
752
+ <footer id="validator-badges">
753
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
754
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.2.
755
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
756
+ </footer>
757
+