ucslib 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. data/.gitignore +4 -0
  2. data/Gemfile +4 -0
  3. data/LICENSE.txt +201 -0
  4. data/README.rdoc +106 -0
  5. data/Rakefile +37 -0
  6. data/html/README_rdoc.html +146 -0
  7. data/html/UCSInventory.html +533 -0
  8. data/html/UCSProvision.html +1914 -0
  9. data/html/UCSToken.html +339 -0
  10. data/html/Ucslib.html +173 -0
  11. data/html/created.rid +7 -0
  12. data/html/images/brick.png +0 -0
  13. data/html/images/brick_link.png +0 -0
  14. data/html/images/bug.png +0 -0
  15. data/html/images/bullet_black.png +0 -0
  16. data/html/images/bullet_toggle_minus.png +0 -0
  17. data/html/images/bullet_toggle_plus.png +0 -0
  18. data/html/images/date.png +0 -0
  19. data/html/images/find.png +0 -0
  20. data/html/images/loadingAnimation.gif +0 -0
  21. data/html/images/macFFBgHack.png +0 -0
  22. data/html/images/package.png +0 -0
  23. data/html/images/page_green.png +0 -0
  24. data/html/images/page_white_text.png +0 -0
  25. data/html/images/page_white_width.png +0 -0
  26. data/html/images/plugin.png +0 -0
  27. data/html/images/ruby.png +0 -0
  28. data/html/images/tag_green.png +0 -0
  29. data/html/images/wrench.png +0 -0
  30. data/html/images/wrench_orange.png +0 -0
  31. data/html/images/zoom.png +0 -0
  32. data/html/index.html +193 -0
  33. data/html/js/darkfish.js +116 -0
  34. data/html/js/jquery.js +32 -0
  35. data/html/js/quicksearch.js +114 -0
  36. data/html/js/thickbox-compressed.js +10 -0
  37. data/html/lib/ucslib/inventory_rb.html +75 -0
  38. data/html/lib/ucslib/provision_rb.html +75 -0
  39. data/html/lib/ucslib/session_rb.html +75 -0
  40. data/html/lib/ucslib/version_rb.html +75 -0
  41. data/html/lib/ucslib_rb.html +89 -0
  42. data/html/rdoc.css +763 -0
  43. data/lib/ucslib/inventory.rb +131 -0
  44. data/lib/ucslib/provision.rb +949 -0
  45. data/lib/ucslib/session.rb +108 -0
  46. data/lib/ucslib/version.rb +20 -0
  47. data/lib/ucslib.rb +26 -0
  48. data/ucslib.gemspec +45 -0
  49. metadata +126 -0
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: inventory.rb [ucslib]</title>
10
+
11
+ <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="../../js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="../../js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="../../js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file file-popup">
24
+ <div id="metadata">
25
+ <dl>
26
+ <dt class="modified-date">Last Modified</dt>
27
+ <dd class="modified-date">2012-05-13 13:23:45 -0400</dd>
28
+
29
+
30
+ <dt class="requires">Requires</dt>
31
+ <dd class="requires">
32
+ <ul>
33
+
34
+ </ul>
35
+ </dd>
36
+
37
+
38
+
39
+ </dl>
40
+ </div>
41
+
42
+ <div id="documentation">
43
+
44
+ <div class="description">
45
+ <h2>Description</h2>
46
+ <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
+ <td>
48
+ <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
+ </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
+ <td>
51
+ <p>Copyright © 2012 Murali Raju.</p>
52
+ </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
+ <td>
54
+ <p>Apache License, Version 2.0</p>
55
+ </td></tr></table>
56
+
57
+ <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
+ use this file except in compliance with the License. You may obtain a copy
59
+ of the License at</p>
60
+
61
+ <p><a
62
+ href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
+
64
+ <p>Unless required by applicable law or agreed to in writing, software
65
+ distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
+ License for the specific language governing permissions and limitations
68
+ under the License.</p>
69
+
70
+ </div>
71
+
72
+ </div>
73
+ </body>
74
+ </html>
75
+
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: provision.rb [ucslib]</title>
10
+
11
+ <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="../../js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="../../js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="../../js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file file-popup">
24
+ <div id="metadata">
25
+ <dl>
26
+ <dt class="modified-date">Last Modified</dt>
27
+ <dd class="modified-date">2012-05-13 15:51:38 -0400</dd>
28
+
29
+
30
+ <dt class="requires">Requires</dt>
31
+ <dd class="requires">
32
+ <ul>
33
+
34
+ </ul>
35
+ </dd>
36
+
37
+
38
+
39
+ </dl>
40
+ </div>
41
+
42
+ <div id="documentation">
43
+
44
+ <div class="description">
45
+ <h2>Description</h2>
46
+ <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
+ <td>
48
+ <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
+ </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
+ <td>
51
+ <p>Copyright © 2012 Murali Raju.</p>
52
+ </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
+ <td>
54
+ <p>Apache License, Version 2.0</p>
55
+ </td></tr></table>
56
+
57
+ <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
+ use this file except in compliance with the License. You may obtain a copy
59
+ of the License at</p>
60
+
61
+ <p><a
62
+ href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
+
64
+ <p>Unless required by applicable law or agreed to in writing, software
65
+ distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
+ License for the specific language governing permissions and limitations
68
+ under the License.</p>
69
+
70
+ </div>
71
+
72
+ </div>
73
+ </body>
74
+ </html>
75
+
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: session.rb [ucslib]</title>
10
+
11
+ <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="../../js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="../../js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="../../js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file file-popup">
24
+ <div id="metadata">
25
+ <dl>
26
+ <dt class="modified-date">Last Modified</dt>
27
+ <dd class="modified-date">2012-05-13 13:23:49 -0400</dd>
28
+
29
+
30
+ <dt class="requires">Requires</dt>
31
+ <dd class="requires">
32
+ <ul>
33
+
34
+ </ul>
35
+ </dd>
36
+
37
+
38
+
39
+ </dl>
40
+ </div>
41
+
42
+ <div id="documentation">
43
+
44
+ <div class="description">
45
+ <h2>Description</h2>
46
+ <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
+ <td>
48
+ <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
+ </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
+ <td>
51
+ <p>Copyright © 2012 Murali Raju.</p>
52
+ </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
+ <td>
54
+ <p>Apache License, Version 2.0</p>
55
+ </td></tr></table>
56
+
57
+ <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
+ use this file except in compliance with the License. You may obtain a copy
59
+ of the License at</p>
60
+
61
+ <p><a
62
+ href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
+
64
+ <p>Unless required by applicable law or agreed to in writing, software
65
+ distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
+ License for the specific language governing permissions and limitations
68
+ under the License.</p>
69
+
70
+ </div>
71
+
72
+ </div>
73
+ </body>
74
+ </html>
75
+
@@ -0,0 +1,75 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: version.rb [ucslib]</title>
10
+
11
+ <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="../../js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="../../js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="../../js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file file-popup">
24
+ <div id="metadata">
25
+ <dl>
26
+ <dt class="modified-date">Last Modified</dt>
27
+ <dd class="modified-date">2012-05-13 13:23:52 -0400</dd>
28
+
29
+
30
+ <dt class="requires">Requires</dt>
31
+ <dd class="requires">
32
+ <ul>
33
+
34
+ </ul>
35
+ </dd>
36
+
37
+
38
+
39
+ </dl>
40
+ </div>
41
+
42
+ <div id="documentation">
43
+
44
+ <div class="description">
45
+ <h2>Description</h2>
46
+ <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
+ <td>
48
+ <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
+ </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
+ <td>
51
+ <p>Copyright © 2012 Murali Raju.</p>
52
+ </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
+ <td>
54
+ <p>Apache License, Version 2.0</p>
55
+ </td></tr></table>
56
+
57
+ <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
+ use this file except in compliance with the License. You may obtain a copy
59
+ of the License at</p>
60
+
61
+ <p><a
62
+ href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
+
64
+ <p>Unless required by applicable law or agreed to in writing, software
65
+ distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
+ License for the specific language governing permissions and limitations
68
+ under the License.</p>
69
+
70
+ </div>
71
+
72
+ </div>
73
+ </body>
74
+ </html>
75
+
@@ -0,0 +1,89 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
+
5
+ <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
+ <head>
7
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
+
9
+ <title>File: ucslib.rb [ucslib]</title>
10
+
11
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
12
+
13
+ <script src="../js/jquery.js" type="text/javascript"
14
+ charset="utf-8"></script>
15
+ <script src="../js/thickbox-compressed.js" type="text/javascript"
16
+ charset="utf-8"></script>
17
+ <script src="../js/quicksearch.js" type="text/javascript"
18
+ charset="utf-8"></script>
19
+ <script src="../js/darkfish.js" type="text/javascript"
20
+ charset="utf-8"></script>
21
+ </head>
22
+
23
+ <body class="file file-popup">
24
+ <div id="metadata">
25
+ <dl>
26
+ <dt class="modified-date">Last Modified</dt>
27
+ <dd class="modified-date">2012-05-12 15:18:22 -0400</dd>
28
+
29
+
30
+ <dt class="requires">Requires</dt>
31
+ <dd class="requires">
32
+ <ul>
33
+
34
+ <li>ucslib/version</li>
35
+
36
+ <li>ucslib/session</li>
37
+
38
+ <li>ucslib/provision</li>
39
+
40
+ <li>ucslib/inventory</li>
41
+
42
+ <li>nokogiri</li>
43
+
44
+ <li>rest-client</li>
45
+
46
+ <li>json</li>
47
+
48
+ </ul>
49
+ </dd>
50
+
51
+
52
+
53
+ </dl>
54
+ </div>
55
+
56
+ <div id="documentation">
57
+
58
+ <div class="description">
59
+ <h2>Description</h2>
60
+ <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
61
+ <td>
62
+ <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
63
+ </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
64
+ <td>
65
+ <p>Copyright © 2011 Murali Raju.</p>
66
+ </td></tr><tr><td class="rdoc-term"><p>License</p></td>
67
+ <td>
68
+ <p>Apache License, Version 2.0</p>
69
+ </td></tr></table>
70
+
71
+ <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
72
+ use this file except in compliance with the License. You may obtain a copy
73
+ of the License at</p>
74
+
75
+ <p><a
76
+ href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
77
+
78
+ <p>Unless required by applicable law or agreed to in writing, software
79
+ distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
80
+ WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
81
+ License for the specific language governing permissions and limitations
82
+ under the License.</p>
83
+
84
+ </div>
85
+
86
+ </div>
87
+ </body>
88
+ </html>
89
+