vagrant-parallels 0.0.4 → 0.0.5
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.
- data/.gitignore +1 -0
- data/README.md +63 -8
- data/lib/vagrant-parallels/action.rb +8 -1
- data/lib/vagrant-parallels/action/check_guest_tools.rb +1 -3
- data/lib/vagrant-parallels/action/clear_network_interfaces.rb +1 -1
- data/lib/vagrant-parallels/action/customize.rb +43 -0
- data/lib/vagrant-parallels/action/destroy_unused_network_interfaces.rb +22 -0
- data/lib/vagrant-parallels/action/network.rb +272 -0
- data/lib/vagrant-parallels/action/share_folders.rb +2 -2
- data/lib/vagrant-parallels/config.rb +59 -0
- data/lib/vagrant-parallels/driver/prl_ctl.rb +231 -58
- data/lib/vagrant-parallels/errors.rb +6 -2
- data/lib/vagrant-parallels/plugin.rb +5 -5
- data/lib/vagrant-parallels/version.rb +1 -1
- data/locales/en.yml +8 -4
- data/sandi_meter/assets/chart.js +12 -0
- data/sandi_meter/assets/forkme.png +0 -0
- data/sandi_meter/assets/jquery.js +6 -0
- data/sandi_meter/assets/morris.css +2 -0
- data/sandi_meter/assets/normalize.css +406 -0
- data/sandi_meter/assets/script.js +83 -0
- data/sandi_meter/assets/style.css +128 -0
- data/sandi_meter/index.html +392 -0
- data/sandi_meter/sandi_meter.log +1 -0
- data/vagrant-parallels.gemspec +2 -2
- metadata +30 -8
- checksums.yaml +0 -15
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
function plotDonut(value1, value2, label1, label2, id) {
|
|
2
|
+
var data = [];
|
|
3
|
+
|
|
4
|
+
if(value1 > 0) {
|
|
5
|
+
data.push({ value: value1, label: label1 });
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
if(value2 > 0){
|
|
9
|
+
data.push({ value: value2, label: label2 });
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
console.log(data);
|
|
13
|
+
Morris.Donut({
|
|
14
|
+
element: id,
|
|
15
|
+
data: data,
|
|
16
|
+
colors: [
|
|
17
|
+
'#0C0',
|
|
18
|
+
'#F00'
|
|
19
|
+
]
|
|
20
|
+
})
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
function plotLine(id, data, ykeys, labels) {
|
|
24
|
+
Morris.Line({
|
|
25
|
+
element: id,
|
|
26
|
+
data: data,
|
|
27
|
+
xkey: 'timestamp',
|
|
28
|
+
ykeys: ykeys,
|
|
29
|
+
labels: labels,
|
|
30
|
+
lineColors: [
|
|
31
|
+
'#0C0',
|
|
32
|
+
'#F00'
|
|
33
|
+
],
|
|
34
|
+
dateFormat: function (x) { return new Date(x).toDateString(); }
|
|
35
|
+
});
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
function latestReport(data) {
|
|
39
|
+
return data.sort(function(a, b){
|
|
40
|
+
var keyA = new Date(a.timestamp),
|
|
41
|
+
keyB = new Date(b.timestamp);
|
|
42
|
+
|
|
43
|
+
if(keyA < keyB) return -1;
|
|
44
|
+
if(keyA > keyB) return 1;
|
|
45
|
+
return 0;
|
|
46
|
+
}).slice(-1)[0];
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
function dateHeader(last_report) {
|
|
50
|
+
var d = Date(last_report.timestamp).toString().split(' ');
|
|
51
|
+
return date_string = [d[3], d[1], d[2], d[4]].join(' ');
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function setHeader(last_report) {
|
|
55
|
+
$('.js-report-date').text("Latest report from " + dateHeader(latest_report));
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
$(document).ready(function(){
|
|
59
|
+
latest_report = latestReport(data);
|
|
60
|
+
|
|
61
|
+
setHeader();
|
|
62
|
+
|
|
63
|
+
plotDonut(latest_report.r10, latest_report.r11, '1. Classes under 100 lines', '1. Classes more than 100 lines', 'pie1');
|
|
64
|
+
plotDonut(latest_report.r20, latest_report.r21, '2. Methods under 5 lines', '2. Methods more than 5 lines', 'pie2');
|
|
65
|
+
plotDonut(latest_report.r30, latest_report.r31, '3. Method calls with less than 4 params', '3. Method calls with more than 4 params', 'pie3');
|
|
66
|
+
plotDonut(latest_report.r40, latest_report.r41, '4. Controllers with one instance variable', '4. Controllers with many instance variables', 'pie4');
|
|
67
|
+
|
|
68
|
+
plotLine('plot1', data, ['r10', 'r11'], ['under 100 lines', 'more than 100 lines.']);
|
|
69
|
+
plotLine('plot2', data, ['r20', 'r21'], ['under 5 lines', 'more than 5 lines']);
|
|
70
|
+
plotLine('plot3', data, ['r30', 'r31'], ['less than 4 params', 'more than 4 params']);
|
|
71
|
+
plotLine('plot4', data, ['r40', 'r41'], ['one instance variable', 'many instance variables']);
|
|
72
|
+
|
|
73
|
+
var $tabs = $(".js-tab-item");
|
|
74
|
+
var $menuItems = $(".js-menu-item")
|
|
75
|
+
$menuItems.on("click", function(e){
|
|
76
|
+
var rel = $(this).data("rel");
|
|
77
|
+
$tabs.hide();
|
|
78
|
+
$menuItems.removeClass("main-menu-active");
|
|
79
|
+
$(rel).show();
|
|
80
|
+
$(this).addClass("main-menu-active");
|
|
81
|
+
e.preventDefault();
|
|
82
|
+
});
|
|
83
|
+
})
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
body {
|
|
2
|
+
font-family: "Gill Sans", sans-serif;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.container {
|
|
6
|
+
width: 960px;
|
|
7
|
+
margin: 0 auto;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.clearfix {
|
|
11
|
+
clear: both;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.main-title {
|
|
15
|
+
font-size: 38px;
|
|
16
|
+
text-align: center;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.main-description {
|
|
20
|
+
font-size: 23px;
|
|
21
|
+
text-align: center;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.main-footer {
|
|
25
|
+
text-align: center;
|
|
26
|
+
padding: 20px 0 30px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.main-footer a {
|
|
30
|
+
color: rgb(65, 131, 196);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.pie-charts-item {
|
|
34
|
+
float: left;
|
|
35
|
+
width: 25%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.plot-charts-item {
|
|
39
|
+
width: 480px;
|
|
40
|
+
float: left;
|
|
41
|
+
height: 298px;
|
|
42
|
+
margin-bottom: 40px;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.plot-charts-item-caption {
|
|
46
|
+
font-size: 16px;
|
|
47
|
+
line-height: 18px;
|
|
48
|
+
text-align: center;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
.plot-charts-item-graph {
|
|
52
|
+
height: 280px;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.toggle_report.current_tab {
|
|
56
|
+
text-decoration: none;
|
|
57
|
+
cursor: default;
|
|
58
|
+
pointer-events: none;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.details {
|
|
62
|
+
display: none;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.details h2 {
|
|
66
|
+
margin: 0 0 14px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.details-stats {
|
|
70
|
+
font-family: monospace;
|
|
71
|
+
margin-bottom: 40px;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.details-stats td {
|
|
75
|
+
padding-right: 20px;
|
|
76
|
+
line-height: 18px;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.details-stats td.warning {
|
|
80
|
+
color: red;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.main-menu {
|
|
84
|
+
margin-bottom: 30px;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.main-menu {
|
|
88
|
+
text-align: center;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.main-menu a {
|
|
92
|
+
display: inline-block;
|
|
93
|
+
padding: 4px 16px;
|
|
94
|
+
font-size: 18px;
|
|
95
|
+
text-decoration: none;
|
|
96
|
+
color: black;
|
|
97
|
+
border: 1px solid rgb(158, 158, 158);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.main-menu a:hover {
|
|
101
|
+
color: rgb(65, 131, 196);;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.main-menu a:first-child {
|
|
105
|
+
border-right: none;
|
|
106
|
+
border-top-left-radius: 4px;
|
|
107
|
+
border-bottom-left-radius: 4px;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.main-menu a:last-child {
|
|
111
|
+
border-top-right-radius: 4px;
|
|
112
|
+
border-bottom-right-radius: 4px;
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.main-menu-active {
|
|
116
|
+
background: rgb(240, 240, 240);
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.main-menu .main-menu-active:hover {
|
|
120
|
+
color: black;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.hint {
|
|
124
|
+
margin: -40px 0 40px 0;
|
|
125
|
+
font-family: monospace;
|
|
126
|
+
font-style: italic;
|
|
127
|
+
font-weight: normal;
|
|
128
|
+
}
|
|
@@ -0,0 +1,392 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>Sandi Chart</title>
|
|
5
|
+
<link rel="stylesheet" href="assets/normalize.css">
|
|
6
|
+
<link rel="stylesheet" href="assets/morris.css">
|
|
7
|
+
<link rel="stylesheet" href="assets/style.css">
|
|
8
|
+
<script src="assets/jquery.js"></script>
|
|
9
|
+
<script src="assets/chart.js"></script>
|
|
10
|
+
<script src="assets/script.js"></script>
|
|
11
|
+
<script type="text/javascript">
|
|
12
|
+
var data = [{"r10":38,"r11":2,"r20":71,"r21":43,"r30":387,"r31":5,"r40":0,"r41":0,"timestamp":1381968399000}];
|
|
13
|
+
</script>
|
|
14
|
+
</head>
|
|
15
|
+
<body>
|
|
16
|
+
<a href="https://github.com/makaroni4/sandi_meter"><img style="position: absolute; top: 0; left: 0; border: 0;" src="assets/forkme.png" alt="Fork me on GitHub"></a>
|
|
17
|
+
<div class="container">
|
|
18
|
+
<header>
|
|
19
|
+
<h1 class="main-title">Sandi Metz rules</h1>
|
|
20
|
+
<h2 class="main-description js-report-date"></h2>
|
|
21
|
+
</header>
|
|
22
|
+
<section class="pie-charts">
|
|
23
|
+
<div id="pie1" class="pie-charts-item"></div>
|
|
24
|
+
<div id="pie2" class="pie-charts-item"></div>
|
|
25
|
+
<div id="pie3" class="pie-charts-item"></div>
|
|
26
|
+
<div id="pie4" class="pie-charts-item"></div>
|
|
27
|
+
<div class="clearfix"></div>
|
|
28
|
+
</section>
|
|
29
|
+
<nav class="main-menu">
|
|
30
|
+
<a href="#" class="main-menu-active js-menu-item" data-rel=".js-charts">Charts</a><a href="#" class="js-menu-item" data-rel=".js-details">Details</a>
|
|
31
|
+
</nav>
|
|
32
|
+
<section class="plot-charts js-charts js-tab-item">
|
|
33
|
+
<div class="plot-charts-item">
|
|
34
|
+
<div class="plot-charts-item-caption">Number of 100 line classes vs time</div>
|
|
35
|
+
<div class="plot-charts-item-graph" id="plot1"></div>
|
|
36
|
+
</div>
|
|
37
|
+
<div class="plot-charts-item">
|
|
38
|
+
<div class="plot-charts-item-caption">Number of 5 line methods vs time</div>
|
|
39
|
+
<div class="plot-charts-item-graph" id="plot2"></div>
|
|
40
|
+
</div>
|
|
41
|
+
<div class="clearfix"></div>
|
|
42
|
+
<div class="plot-charts-item">
|
|
43
|
+
<div class="plot-charts-item-caption">Number of methods calls with 4 params vs time</div>
|
|
44
|
+
<div class="plot-charts-item-graph" id="plot3"></div>
|
|
45
|
+
</div>
|
|
46
|
+
<div class="plot-charts-item">
|
|
47
|
+
<div class="plot-charts-item-caption">Number of controllers with 1 instance variable vs time</div>
|
|
48
|
+
<div class="plot-charts-item-graph" id="plot4"></div>
|
|
49
|
+
</div>
|
|
50
|
+
<div class="clearfix"></div>
|
|
51
|
+
</section>
|
|
52
|
+
<section class="details js-details js-tab-item">
|
|
53
|
+
<h2>Classes with 100+ lines</h2>
|
|
54
|
+
<table class="details-stats">
|
|
55
|
+
<thead>
|
|
56
|
+
<tr>
|
|
57
|
+
<th class="" title="">Class name</th>
|
|
58
|
+
<th class="" title="">Size</th>
|
|
59
|
+
<th class="" title="">Path</th>
|
|
60
|
+
</tr>
|
|
61
|
+
|
|
62
|
+
</thead>
|
|
63
|
+
<tbody>
|
|
64
|
+
<tr>
|
|
65
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ShareFolders</td>
|
|
66
|
+
<td class="" title="">115</td>
|
|
67
|
+
<td class="" title="">./lib/vagrant-parallels/action/share_folders.rb:11</td>
|
|
68
|
+
</tr>
|
|
69
|
+
<tr>
|
|
70
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
71
|
+
<td class="" title="">295</td>
|
|
72
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:16</td>
|
|
73
|
+
</tr>
|
|
74
|
+
|
|
75
|
+
</tbody>
|
|
76
|
+
</table>
|
|
77
|
+
<div class="hint">NOTE: Red classes are misindented. Start improving your project by fixing them.</div><h2>Methods with 5+ lines</h2>
|
|
78
|
+
<table class="details-stats">
|
|
79
|
+
<thead>
|
|
80
|
+
<tr>
|
|
81
|
+
<th class="" title="">Class name</th>
|
|
82
|
+
<th class="" title="">Method name</th>
|
|
83
|
+
<th class="" title="">Size</th>
|
|
84
|
+
<th class="" title="">Path</th>
|
|
85
|
+
</tr>
|
|
86
|
+
|
|
87
|
+
</thead>
|
|
88
|
+
<tbody>
|
|
89
|
+
<tr>
|
|
90
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ShareFolders</td>
|
|
91
|
+
<td class="" title="">mount_shared_folders</td>
|
|
92
|
+
<td class="" title="">36</td>
|
|
93
|
+
<td class="" title="">./lib/vagrant-parallels/action/share_folders.rb:89</td>
|
|
94
|
+
</tr>
|
|
95
|
+
<tr>
|
|
96
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::SetupPackageFiles</td>
|
|
97
|
+
<td class="" title="">call</td>
|
|
98
|
+
<td class="" title="">34</td>
|
|
99
|
+
<td class="" title="">./lib/vagrant-parallels/action/setup_package_files.rb:12</td>
|
|
100
|
+
</tr>
|
|
101
|
+
<tr>
|
|
102
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Import</td>
|
|
103
|
+
<td class="" title="">call</td>
|
|
104
|
+
<td class="" title="">32</td>
|
|
105
|
+
<td class="" title="">./lib/vagrant-parallels/action/import.rb:13</td>
|
|
106
|
+
</tr>
|
|
107
|
+
<tr>
|
|
108
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
109
|
+
<td class="" title="">execute</td>
|
|
110
|
+
<td class="" title="">27</td>
|
|
111
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:268</td>
|
|
112
|
+
</tr>
|
|
113
|
+
<tr>
|
|
114
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
115
|
+
<td class="" title="">error_detection</td>
|
|
116
|
+
<td class="" title="">27</td>
|
|
117
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:237</td>
|
|
118
|
+
</tr>
|
|
119
|
+
<tr>
|
|
120
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::CheckGuestTools</td>
|
|
121
|
+
<td class="" title="">call</td>
|
|
122
|
+
<td class="" title="">17</td>
|
|
123
|
+
<td class="" title="">./lib/vagrant-parallels/action/check_guest_tools.rb:9</td>
|
|
124
|
+
</tr>
|
|
125
|
+
<tr>
|
|
126
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::PrepareNFSSettings</td>
|
|
127
|
+
<td class="" title="">call</td>
|
|
128
|
+
<td class="" title="">17</td>
|
|
129
|
+
<td class="" title="">./lib/vagrant-parallels/action/prepare_nfs_settings.rb:10</td>
|
|
130
|
+
</tr>
|
|
131
|
+
<tr>
|
|
132
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ShareFolders</td>
|
|
133
|
+
<td class="" title="">prepare_folders</td>
|
|
134
|
+
<td class="" title="">15</td>
|
|
135
|
+
<td class="" title="">./lib/vagrant-parallels/action/share_folders.rb:52</td>
|
|
136
|
+
</tr>
|
|
137
|
+
<tr>
|
|
138
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ShareFolders</td>
|
|
139
|
+
<td class="" title="">create_metadata</td>
|
|
140
|
+
<td class="" title="">15</td>
|
|
141
|
+
<td class="" title="">./lib/vagrant-parallels/action/share_folders.rb:70</td>
|
|
142
|
+
</tr>
|
|
143
|
+
<tr>
|
|
144
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ShareFolders</td>
|
|
145
|
+
<td class="" title="">shared_folders</td>
|
|
146
|
+
<td class="" title="">15</td>
|
|
147
|
+
<td class="" title="">./lib/vagrant-parallels/action/share_folders.rb:32</td>
|
|
148
|
+
</tr>
|
|
149
|
+
<tr>
|
|
150
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Export</td>
|
|
151
|
+
<td class="" title="">call</td>
|
|
152
|
+
<td class="" title="">12</td>
|
|
153
|
+
<td class="" title="">./lib/vagrant-parallels/action/export.rb:15</td>
|
|
154
|
+
</tr>
|
|
155
|
+
<tr>
|
|
156
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
157
|
+
<td class="" title="">initialize</td>
|
|
158
|
+
<td class="" title="">12</td>
|
|
159
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:22</td>
|
|
160
|
+
</tr>
|
|
161
|
+
<tr>
|
|
162
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::UnregisterTemplate</td>
|
|
163
|
+
<td class="" title="">call</td>
|
|
164
|
+
<td class="" title="">12</td>
|
|
165
|
+
<td class="" title="">./lib/vagrant-parallels/action/unregister_template.rb:9</td>
|
|
166
|
+
</tr>
|
|
167
|
+
<tr>
|
|
168
|
+
<td class="" title="">VagrantPlugins::Parallels::Provider</td>
|
|
169
|
+
<td class="" title="">state</td>
|
|
170
|
+
<td class="" title="">12</td>
|
|
171
|
+
<td class="" title="">./lib/vagrant-parallels/provider.rb:42</td>
|
|
172
|
+
</tr>
|
|
173
|
+
<tr>
|
|
174
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Export</td>
|
|
175
|
+
<td class="" title="">export</td>
|
|
176
|
+
<td class="" title="">11</td>
|
|
177
|
+
<td class="" title="">./lib/vagrant-parallels/action/export.rb:43</td>
|
|
178
|
+
</tr>
|
|
179
|
+
<tr>
|
|
180
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Resume</td>
|
|
181
|
+
<td class="" title="">call</td>
|
|
182
|
+
<td class="" title="">11</td>
|
|
183
|
+
<td class="" title="">./lib/vagrant-parallels/action/resume.rb:9</td>
|
|
184
|
+
</tr>
|
|
185
|
+
<tr>
|
|
186
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::PrepareNFSSettings</td>
|
|
187
|
+
<td class="" title="">read_host_ip</td>
|
|
188
|
+
<td class="" title="">11</td>
|
|
189
|
+
<td class="" title="">./lib/vagrant-parallels/action/prepare_nfs_settings.rb:34</td>
|
|
190
|
+
</tr>
|
|
191
|
+
<tr>
|
|
192
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
193
|
+
<td class="" title="">raw</td>
|
|
194
|
+
<td class="" title="">11</td>
|
|
195
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:299</td>
|
|
196
|
+
</tr>
|
|
197
|
+
<tr>
|
|
198
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Import</td>
|
|
199
|
+
<td class="" title="">recover</td>
|
|
200
|
+
<td class="" title="">11</td>
|
|
201
|
+
<td class="" title="">./lib/vagrant-parallels/action/import.rb:48</td>
|
|
202
|
+
</tr>
|
|
203
|
+
<tr>
|
|
204
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::RegisterTemplate</td>
|
|
205
|
+
<td class="" title="">call</td>
|
|
206
|
+
<td class="" title="">10</td>
|
|
207
|
+
<td class="" title="">./lib/vagrant-parallels/action/register_template.rb:9</td>
|
|
208
|
+
</tr>
|
|
209
|
+
<tr>
|
|
210
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Export</td>
|
|
211
|
+
<td class="" title="">compact</td>
|
|
212
|
+
<td class="" title="">10</td>
|
|
213
|
+
<td class="" title="">./lib/vagrant-parallels/action/export.rb:57</td>
|
|
214
|
+
</tr>
|
|
215
|
+
<tr>
|
|
216
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
217
|
+
<td class="" title="">export</td>
|
|
218
|
+
<td class="" title="">10</td>
|
|
219
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:137</td>
|
|
220
|
+
</tr>
|
|
221
|
+
<tr>
|
|
222
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
223
|
+
<td class="" title="">compact</td>
|
|
224
|
+
<td class="" title="">10</td>
|
|
225
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:150</td>
|
|
226
|
+
</tr>
|
|
227
|
+
<tr>
|
|
228
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
229
|
+
<td class="" title="">import</td>
|
|
230
|
+
<td class="" title="">9</td>
|
|
231
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:95</td>
|
|
232
|
+
</tr>
|
|
233
|
+
<tr>
|
|
234
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::CheckAccessible</td>
|
|
235
|
+
<td class="" title="">call</td>
|
|
236
|
+
<td class="" title="">9</td>
|
|
237
|
+
<td class="" title="">./lib/vagrant-parallels/action/check_accessible.rb:9</td>
|
|
238
|
+
</tr>
|
|
239
|
+
<tr>
|
|
240
|
+
<td class="" title="">VagrantPlugins::Parallels::Provider</td>
|
|
241
|
+
<td class="" title="">ssh_info</td>
|
|
242
|
+
<td class="" title="">9</td>
|
|
243
|
+
<td class="" title="">./lib/vagrant-parallels/provider.rb:26</td>
|
|
244
|
+
</tr>
|
|
245
|
+
<tr>
|
|
246
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ShareFolders</td>
|
|
247
|
+
<td class="" title="">call</td>
|
|
248
|
+
<td class="" title="">8</td>
|
|
249
|
+
<td class="" title="">./lib/vagrant-parallels/action/share_folders.rb:19</td>
|
|
250
|
+
</tr>
|
|
251
|
+
<tr>
|
|
252
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
253
|
+
<td class="" title="">read_all_paths</td>
|
|
254
|
+
<td class="" title="">8</td>
|
|
255
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:61</td>
|
|
256
|
+
</tr>
|
|
257
|
+
<tr>
|
|
258
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::MatchMACAddress</td>
|
|
259
|
+
<td class="" title="">call</td>
|
|
260
|
+
<td class="" title="">7</td>
|
|
261
|
+
<td class="" title="">./lib/vagrant-parallels/action/match_mac_address.rb:9</td>
|
|
262
|
+
</tr>
|
|
263
|
+
<tr>
|
|
264
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
265
|
+
<td class="" title="">read_all_info</td>
|
|
266
|
+
<td class="" title="">7</td>
|
|
267
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:213</td>
|
|
268
|
+
</tr>
|
|
269
|
+
<tr>
|
|
270
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::IsSaved</td>
|
|
271
|
+
<td class="" title="">call</td>
|
|
272
|
+
<td class="" title="">7</td>
|
|
273
|
+
<td class="" title="">./lib/vagrant-parallels/action/is_saved.rb:9</td>
|
|
274
|
+
</tr>
|
|
275
|
+
<tr>
|
|
276
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::PrepareNFSSettings</td>
|
|
277
|
+
<td class="" title="">read_machine_ip</td>
|
|
278
|
+
<td class="" title="">7</td>
|
|
279
|
+
<td class="" title="">./lib/vagrant-parallels/action/prepare_nfs_settings.rb:52</td>
|
|
280
|
+
</tr>
|
|
281
|
+
<tr>
|
|
282
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::CheckParallels</td>
|
|
283
|
+
<td class="" title="">call</td>
|
|
284
|
+
<td class="" title="">7</td>
|
|
285
|
+
<td class="" title="">./lib/vagrant-parallels/action/check_parallels.rb:10</td>
|
|
286
|
+
</tr>
|
|
287
|
+
<tr>
|
|
288
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::IsPaused</td>
|
|
289
|
+
<td class="" title="">call</td>
|
|
290
|
+
<td class="" title="">7</td>
|
|
291
|
+
<td class="" title="">./lib/vagrant-parallels/action/is_paused.rb:9</td>
|
|
292
|
+
</tr>
|
|
293
|
+
<tr>
|
|
294
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
295
|
+
<td class="" title="">ip</td>
|
|
296
|
+
<td class="" title="">7</td>
|
|
297
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:200</td>
|
|
298
|
+
</tr>
|
|
299
|
+
<tr>
|
|
300
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Created</td>
|
|
301
|
+
<td class="" title="">call</td>
|
|
302
|
+
<td class="" title="">6</td>
|
|
303
|
+
<td class="" title="">./lib/vagrant-parallels/action/created.rb:9</td>
|
|
304
|
+
</tr>
|
|
305
|
+
<tr>
|
|
306
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::IsRunning</td>
|
|
307
|
+
<td class="" title="">call</td>
|
|
308
|
+
<td class="" title="">6</td>
|
|
309
|
+
<td class="" title="">./lib/vagrant-parallels/action/is_running.rb:9</td>
|
|
310
|
+
</tr>
|
|
311
|
+
<tr>
|
|
312
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::ForcedHalt</td>
|
|
313
|
+
<td class="" title="">call</td>
|
|
314
|
+
<td class="" title="">6</td>
|
|
315
|
+
<td class="" title="">./lib/vagrant-parallels/action/forced_halt.rb:9</td>
|
|
316
|
+
</tr>
|
|
317
|
+
<tr>
|
|
318
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::PruneNFSExports</td>
|
|
319
|
+
<td class="" title="">call</td>
|
|
320
|
+
<td class="" title="">6</td>
|
|
321
|
+
<td class="" title="">./lib/vagrant-parallels/action/prune_nfs_exports.rb:9</td>
|
|
322
|
+
</tr>
|
|
323
|
+
<tr>
|
|
324
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Suspend</td>
|
|
325
|
+
<td class="" title="">call</td>
|
|
326
|
+
<td class="" title="">6</td>
|
|
327
|
+
<td class="" title="">./lib/vagrant-parallels/action/suspend.rb:9</td>
|
|
328
|
+
</tr>
|
|
329
|
+
<tr>
|
|
330
|
+
<td class="" title="">VagrantPlugins::Parallels::Provider</td>
|
|
331
|
+
<td class="" title="">action</td>
|
|
332
|
+
<td class="" title="">6</td>
|
|
333
|
+
<td class="" title="">./lib/vagrant-parallels/provider.rb:16</td>
|
|
334
|
+
</tr>
|
|
335
|
+
<tr>
|
|
336
|
+
<td class="" title="">VagrantPlugins::Parallels::Driver::PrlCtl</td>
|
|
337
|
+
<td class="" title="">read_all_names</td>
|
|
338
|
+
<td class="" title="">6</td>
|
|
339
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:48</td>
|
|
340
|
+
</tr>
|
|
341
|
+
<tr>
|
|
342
|
+
<td class="" title="">VagrantPlugins::Parallels::Action::Boot</td>
|
|
343
|
+
<td class="" title="">call</td>
|
|
344
|
+
<td class="" title="">6</td>
|
|
345
|
+
<td class="" title="">./lib/vagrant-parallels/action/boot.rb:9</td>
|
|
346
|
+
</tr>
|
|
347
|
+
|
|
348
|
+
</tbody>
|
|
349
|
+
</table>
|
|
350
|
+
<div class="hint">NOTE: Red methods are misindented. Continue your way to perfect code by fixing them.</div><h2>Method calls with 4+ arguments</h2>
|
|
351
|
+
<table class="details-stats">
|
|
352
|
+
<thead>
|
|
353
|
+
<tr>
|
|
354
|
+
<th class="" title=""># of arguments</th>
|
|
355
|
+
<th class="" title="">Path</th>
|
|
356
|
+
</tr>
|
|
357
|
+
|
|
358
|
+
</thead>
|
|
359
|
+
<tbody>
|
|
360
|
+
<tr>
|
|
361
|
+
<td class="" title="">7</td>
|
|
362
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:138</td>
|
|
363
|
+
</tr>
|
|
364
|
+
<tr>
|
|
365
|
+
<td class="" title="">8</td>
|
|
366
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:178</td>
|
|
367
|
+
</tr>
|
|
368
|
+
<tr>
|
|
369
|
+
<td class="" title="">6</td>
|
|
370
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:192</td>
|
|
371
|
+
</tr>
|
|
372
|
+
<tr>
|
|
373
|
+
<td class="" title="">5</td>
|
|
374
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:</td>
|
|
375
|
+
</tr>
|
|
376
|
+
<tr>
|
|
377
|
+
<td class="" title="">5</td>
|
|
378
|
+
<td class="" title="">./lib/vagrant-parallels/driver/prl_ctl.rb:225</td>
|
|
379
|
+
</tr>
|
|
380
|
+
|
|
381
|
+
</tbody>
|
|
382
|
+
</table>
|
|
383
|
+
|
|
384
|
+
</section>
|
|
385
|
+
<footer class="main-footer">
|
|
386
|
+
Scanned with love by <a href="https://github.com/makaroni4/sandi_meter">sandi_meter</a> gem.
|
|
387
|
+
Please, <a href="https://github.com/makaroni4/sandi_meter/issues/new">leave an issue</a> or
|
|
388
|
+
<a href="mailto:makaroni4@gmail.com">email</a> some feedback!
|
|
389
|
+
</footer>
|
|
390
|
+
</div>
|
|
391
|
+
</body>
|
|
392
|
+
</html>
|