tool-shed 0.0.4

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 (133) hide show
  1. data/Gemfile +9 -0
  2. data/LICENSE +20 -0
  3. data/README.md +52 -0
  4. data/bin/as-asset-detector +16 -0
  5. data/bin/as-class-detector +16 -0
  6. data/bin/as-docp +16 -0
  7. data/bin/as-manifest +16 -0
  8. data/bin/as-style-detector +16 -0
  9. data/coverage/unit/index.html +330 -0
  10. data/coverage/unit/jquery-1.3.2.min.js +19 -0
  11. data/coverage/unit/jquery.tablesorter.min.js +15 -0
  12. data/coverage/unit/lib-hel-asdoc_package_rb.html +447 -0
  13. data/coverage/unit/lib-hel-manifest_rb.html +555 -0
  14. data/coverage/unit/lib-hel-opts-asdoc_package_opts_rb.html +195 -0
  15. data/coverage/unit/lib-hel-opts-manifest_opts_rb.html +195 -0
  16. data/coverage/unit/lib-hel-opts-tool_opts_rb.html +531 -0
  17. data/coverage/unit/lib-hel-opts-unused_class_opts_rb.html +207 -0
  18. data/coverage/unit/lib-hel-opts-unused_style_opts_rb.html +201 -0
  19. data/coverage/unit/lib-hel-project_tools_rb.html +423 -0
  20. data/coverage/unit/lib-hel-search_rb.html +363 -0
  21. data/coverage/unit/lib-hel-stripper_rb.html +357 -0
  22. data/coverage/unit/lib-hel-tool_rb.html +423 -0
  23. data/coverage/unit/lib-hel-unused_class_rb.html +675 -0
  24. data/coverage/unit/lib-hel-unused_style_rb.html +747 -0
  25. data/coverage/unit/lib-hel-version_rb.html +135 -0
  26. data/coverage/unit/lib-hel_tools_rb.html +165 -0
  27. data/coverage/unit/print.css +12 -0
  28. data/coverage/unit/rcov.js +42 -0
  29. data/coverage/unit/screen.css +270 -0
  30. data/coverage.data +0 -0
  31. data/lib/shed/asdoc_package.rb +64 -0
  32. data/lib/shed/manifest.rb +82 -0
  33. data/lib/shed/opts/asdoc_package_opts.rb +22 -0
  34. data/lib/shed/opts/manifest_opts.rb +22 -0
  35. data/lib/shed/opts/tool_opts.rb +114 -0
  36. data/lib/shed/opts/unused_asset_opts.rb +24 -0
  37. data/lib/shed/opts/unused_class_opts.rb +24 -0
  38. data/lib/shed/opts/unused_style_opts.rb +23 -0
  39. data/lib/shed/project_tools.rb +60 -0
  40. data/lib/shed/search.rb +50 -0
  41. data/lib/shed/stripper.rb +49 -0
  42. data/lib/shed/tool.rb +60 -0
  43. data/lib/shed/unused_asset.rb +68 -0
  44. data/lib/shed/unused_class.rb +102 -0
  45. data/lib/shed/unused_style.rb +114 -0
  46. data/lib/shed/version.rb +12 -0
  47. data/lib/tool_shed.rb +19 -0
  48. data/rakefile.rb +109 -0
  49. data/rdoc/classes/ASDocPackage.html +281 -0
  50. data/rdoc/classes/ASDocPackageOpts.html +204 -0
  51. data/rdoc/classes/Manifest.html +323 -0
  52. data/rdoc/classes/ManifestOpts.html +205 -0
  53. data/rdoc/classes/ProjectTools.html +302 -0
  54. data/rdoc/classes/Search.html +203 -0
  55. data/rdoc/classes/Stripper.html +223 -0
  56. data/rdoc/classes/Tool.html +313 -0
  57. data/rdoc/classes/ToolOpts.html +297 -0
  58. data/rdoc/classes/UnusedClass.html +258 -0
  59. data/rdoc/classes/UnusedClassOpts.html +206 -0
  60. data/rdoc/classes/UnusedStyle.html +277 -0
  61. data/rdoc/classes/UnusedStyleOpts.html +205 -0
  62. data/rdoc/created.rid +1 -0
  63. data/rdoc/files/LICENSE.html +129 -0
  64. data/rdoc/files/README_md.html +138 -0
  65. data/rdoc/files/lib/hel/asdoc_package_rb.html +107 -0
  66. data/rdoc/files/lib/hel/manifest_rb.html +107 -0
  67. data/rdoc/files/lib/hel/opts/asdoc_package_opts_rb.html +107 -0
  68. data/rdoc/files/lib/hel/opts/manifest_opts_rb.html +107 -0
  69. data/rdoc/files/lib/hel/opts/tool_opts_rb.html +114 -0
  70. data/rdoc/files/lib/hel/opts/unused_class_opts_rb.html +107 -0
  71. data/rdoc/files/lib/hel/opts/unused_style_opts_rb.html +107 -0
  72. data/rdoc/files/lib/hel/project_tools_rb.html +107 -0
  73. data/rdoc/files/lib/hel/search_rb.html +114 -0
  74. data/rdoc/files/lib/hel/stripper_rb.html +107 -0
  75. data/rdoc/files/lib/hel/tool_rb.html +107 -0
  76. data/rdoc/files/lib/hel/unused_class_rb.html +107 -0
  77. data/rdoc/files/lib/hel/unused_style_rb.html +107 -0
  78. data/rdoc/files/lib/hel/version_rb.html +107 -0
  79. data/rdoc/files/lib/hel_tools_rb.html +127 -0
  80. data/rdoc/fr_class_index.html +39 -0
  81. data/rdoc/fr_file_index.html +43 -0
  82. data/rdoc/fr_method_index.html +75 -0
  83. data/rdoc/index.html +24 -0
  84. data/rdoc/rdoc-style.css +208 -0
  85. data/test/fixtures/search/App.mxml +0 -0
  86. data/test/fixtures/search/hide/Hidden.as +0 -0
  87. data/test/fixtures/search/org/helvector/Main.as +0 -0
  88. data/test/fixtures/src/org/helvector/Helvector.as +16 -0
  89. data/test/fixtures/src/org/helvector/one/HelOne.as +14 -0
  90. data/test/fixtures/src/org/helvector/one/HelOneTwo.mxml +0 -0
  91. data/test/fixtures/src/org/helvector/one/package.asdoc +1 -0
  92. data/test/fixtures/src/org/helvector/package.asdoc +1 -0
  93. data/test/fixtures/src/org/helvector/three/HelThree.as +14 -0
  94. data/test/fixtures/src/org/helvector/three/package.asdoc +1 -0
  95. data/test/fixtures/src/org/helvector/two/HelTwo.as +14 -0
  96. data/test/fixtures/src/org/helvector/two/package.asdoc +1 -0
  97. data/test/fixtures/unused-asset/assets/css/referenced.css +0 -0
  98. data/test/fixtures/unused-asset/assets/css/un-referenced.css +0 -0
  99. data/test/fixtures/unused-asset/assets/fonts/referenced.otf +0 -0
  100. data/test/fixtures/unused-asset/assets/fonts/un-referenced.otf +0 -0
  101. data/test/fixtures/unused-asset/assets/img/referenced.jpg +0 -0
  102. data/test/fixtures/unused-asset/assets/img/referenced.png +0 -0
  103. data/test/fixtures/unused-asset/assets/img/un-referenced.jpg +0 -0
  104. data/test/fixtures/unused-asset/assets/img/un-referenced.png +0 -0
  105. data/test/fixtures/unused-asset/src/org/helvector/ToolShed.as +30 -0
  106. data/test/fixtures/unused-cla/link-report.xml +17 -0
  107. data/test/fixtures/unused-cla/manifest.xml +6 -0
  108. data/test/fixtures/unused-cla/src/Unused.as +0 -0
  109. data/test/fixtures/unused-cla/src/Used.as +0 -0
  110. data/test/fixtures/unused-css/css/styles.css +2 -0
  111. data/test/fixtures/unused-css/css-multiple/more.css +2 -0
  112. data/test/fixtures/unused-css/css-multiple/styles.css +2 -0
  113. data/test/fixtures/unused-css/css-with-comments/commented.css +6 -0
  114. data/test/fixtures/unused-css/src/CSSApp.mxml +5 -0
  115. data/test/test_helper.rb +9 -0
  116. data/test/unit/test_asdoc_package.rb +72 -0
  117. data/test/unit/test_asdoc_package_opts.rb +28 -0
  118. data/test/unit/test_manifest.rb +53 -0
  119. data/test/unit/test_manifest_opts.rb +28 -0
  120. data/test/unit/test_search.rb +67 -0
  121. data/test/unit/test_source_tools.rb +97 -0
  122. data/test/unit/test_stripper.rb +56 -0
  123. data/test/unit/test_tool.rb +73 -0
  124. data/test/unit/test_tool_opts.rb +81 -0
  125. data/test/unit/test_unused_asset.rb +59 -0
  126. data/test/unit/test_unused_asset_opts.rb +32 -0
  127. data/test/unit/test_unused_class.rb +50 -0
  128. data/test/unit/test_unused_class_opts.rb +32 -0
  129. data/test/unit/test_unused_style.rb +103 -0
  130. data/test/unit/test_unused_style_opts.rb +31 -0
  131. data/tool-shed-0.0.3.gem +0 -0
  132. data/tool-shed.gemspec +41 -0
  133. metadata +265 -0
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem "rake"
4
+
5
+ group :development do
6
+ gem "shoulda"
7
+ gem "mocha"
8
+ gem "rcov"
9
+ end
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2010 Simon Gregory
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,52 @@
1
+ # ActionScript and Flex Project Tools
2
+
3
+ A collection of utility scripts for working with ActionScript and Flex projects.
4
+
5
+ ### as-docp
6
+
7
+ The `as-docp` tool is a utility that can be used to generate a flex config file
8
+ from package level ASDoc files. For each package you want to document place your
9
+ asdoc comments in a file with a .asdoc suffix. The `as-docp` tool can then be
10
+ used to gather these together in a flex-config.xml file to pass to the asdoc
11
+ tool when building your documentation.
12
+
13
+ ### as-manifest
14
+
15
+ Scans a specified source tree for ActionScript and MXML files and for each one
16
+ found creates a manifest entry. When complete writes the results to disk.
17
+
18
+ ### as-class-dector
19
+
20
+ This tool compares a mxmlc generated link-report against a manifest file
21
+ created by the as-manifest tool to identify files that are in the project
22
+ source tree but are no longer used by the application.
23
+
24
+ Before executing this script make sure the relevant link reports and manifest
25
+ files have been generated.
26
+
27
+ ### as-style-dector
28
+
29
+ Detects styles that are not used in a Flex application.
30
+
31
+ ### as-asset-dector
32
+
33
+ Under development. This script scans all ActionScript classes and CSS files in a
34
+ project to identify assets, such as png files, that are in the project source
35
+ tree but are no longer referenced by the application.
36
+
37
+ ## Install
38
+
39
+ gem install tool-shed
40
+
41
+ ## Using
42
+
43
+ Once all the tools are ready to use examples will follow.
44
+
45
+ ## Authors
46
+
47
+ [Simon Gregory](http://simongregory.com)
48
+
49
+ ## License
50
+
51
+ Released under the MIT License. Please see the accompanying LICENSE document for
52
+ details.
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
+
5
+ require 'tool_shed'
6
+
7
+ begin
8
+
9
+ opt = UnusedAssetOpts.parse(ARGV)
10
+ UnusedAsset.new(opt)
11
+
12
+ rescue OptionParser::ParseError => e
13
+
14
+ puts e
15
+
16
+ end
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
+
5
+ require 'tool_shed'
6
+
7
+ begin
8
+
9
+ opt = UnusedClassOpts.parse(ARGV)
10
+ UnusedClass.new(opt)
11
+
12
+ rescue OptionParser::ParseError => e
13
+
14
+ puts e
15
+
16
+ end
data/bin/as-docp ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
+
5
+ require 'tool_shed'
6
+
7
+ begin
8
+
9
+ opt = ASDocPackageOpts.parse(ARGV)
10
+ ASDocPackage.new(opt)
11
+
12
+ rescue OptionParser::ParseError => e
13
+
14
+ puts e
15
+
16
+ end
data/bin/as-manifest ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
+
5
+ require 'tool_shed'
6
+
7
+ begin
8
+
9
+ opt = ManifestOpts.parse(ARGV)
10
+ Manifest.new(opt)
11
+
12
+ rescue OptionParser::ParseError => e
13
+
14
+ puts e
15
+
16
+ end
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
4
+
5
+ require 'tool_shed'
6
+
7
+ begin
8
+
9
+ opt = UnusedStyleOpts.parse(ARGV)
10
+ UnusedStyle.new(opt)
11
+
12
+ rescue OptionParser::ParseError => e
13
+
14
+ puts e
15
+
16
+ end
@@ -0,0 +1,330 @@
1
+ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2
+ <html lang='en' xml:lang='en' xmlns='http://www.w3.org/1999/xhtml'>
3
+ <head>
4
+ <meta http-equiv="Content-type" content="text/html;charset=UTF-8" />
5
+ <title>Hel Tools C0 Coverage Information - RCov</title>
6
+ <link href="screen.css" media="all" rel="stylesheet" type="text/css" />
7
+ <link href="print.css" media="print" rel="stylesheet" type="text/css" />
8
+
9
+ <script type="text/javascript" src="jquery-1.3.2.min.js"></script>
10
+ <script type="text/javascript" src="jquery.tablesorter.min.js"></script>
11
+ <script type="text/javascript" src="rcov.js"></script>
12
+ </head>
13
+ <body>
14
+ <h1>Hel Tools C0 Coverage Information - RCov</h1>
15
+
16
+
17
+ <noscript><style type="text/css">.if_js { display:none; }</style></noscript>
18
+
19
+ <div class="filters if_js">
20
+ <fieldset>
21
+ <label>File Filter:</label>
22
+ <select id="file_filter" class="filter">
23
+ <option value="all_files">Show All</option>
24
+ <option value="hel">hel/</option><option value="lib">lib/</option><option value="opts">opts/</option>
25
+ </select>
26
+ </fieldset>
27
+ <fieldset>
28
+ <label>Code Coverage Threshold:</label>
29
+ <select id="coverage_filter" class="filter">
30
+ <option value="all_coverage">Show All</option>
31
+ <option value="10">&lt; 10% Coverage</option><option value="20">&lt; 20% Coverage</option><option value="30">&lt; 30% Coverage</option><option value="40">&lt; 40% Coverage</option><option value="50">&lt; 50% Coverage</option><option value="60">&lt; 60% Coverage</option><option value="70">&lt; 70% Coverage</option><option value="80">&lt; 80% Coverage</option><option value="90">&lt; 90% Coverage</option><option value="100">&lt; 100% Coverage</option>
32
+ <option value="110">= 100% Coverage</option>
33
+ </select>
34
+ </fieldset>
35
+ </div>
36
+
37
+ <div class="report_table_wrapper">
38
+ <table class='report' id='report_table'>
39
+ <thead>
40
+ <tr>
41
+ <th class="left_align">Name</th>
42
+ <th class="right_align">Total Lines</th>
43
+ <th class="right_align">Lines of Code</th>
44
+ <th class="left_align">Total Coverage</th>
45
+ <th class="left_align">Code Coverage</th>
46
+ </tr>
47
+ </thead>
48
+ <tfoot>
49
+ <tr>
50
+ <td class="left_align">TOTAL</td>
51
+ <td class='right_align'><tt>779</tt></td>
52
+ <td class='right_align'><tt>429</tt></td>
53
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
54
+ <div class="percent_graph">
55
+ <div class="covered" style="width:100px"></div>
56
+ <div class="uncovered" style="width:0px"></div>
57
+ </div></td>
58
+ <td class="left_align"><div class="percent_graph_legend"><tt class='coverage_total'>100.00%</tt></div>
59
+ <div class="percent_graph">
60
+ <div class="covered" style="width:100px"></div>
61
+ <div class="uncovered" style="width:0px"></div>
62
+ </div></td>
63
+ </tr>
64
+ </tfoot>
65
+ <tbody>
66
+
67
+ <tr class="all_files all_coverage 110 lib hel even">
68
+ <td class="left_align"><a href="lib-hel-unused_style_rb.html">lib/hel/unused_style.rb</a></td>
69
+ <td class='right_align'><tt>114</tt></td>
70
+ <td class='right_align'><tt>64</tt></td>
71
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
72
+ <div class="percent_graph">
73
+ <div class="covered" style="width:100px"></div>
74
+ <div class="uncovered" style="width:0px"></div>
75
+ </div></td>
76
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
77
+ <div class="percent_graph">
78
+ <div class="covered" style="width:100px"></div>
79
+ <div class="uncovered" style="width:0px"></div>
80
+ </div></td>
81
+ </tr>
82
+
83
+ <tr class="all_files all_coverage 110 lib hel odd">
84
+ <td class="left_align"><a href="lib-hel-search_rb.html">lib/hel/search.rb</a></td>
85
+ <td class='right_align'><tt>50</tt></td>
86
+ <td class='right_align'><tt>27</tt></td>
87
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
88
+ <div class="percent_graph">
89
+ <div class="covered" style="width:100px"></div>
90
+ <div class="uncovered" style="width:0px"></div>
91
+ </div></td>
92
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
93
+ <div class="percent_graph">
94
+ <div class="covered" style="width:100px"></div>
95
+ <div class="uncovered" style="width:0px"></div>
96
+ </div></td>
97
+ </tr>
98
+
99
+ <tr class="all_files all_coverage 110 lib hel opts even">
100
+ <td class="left_align"><a href="lib-hel-opts-unused_style_opts_rb.html">lib/hel/opts/unused_style_opts.rb</a></td>
101
+ <td class='right_align'><tt>23</tt></td>
102
+ <td class='right_align'><tt>14</tt></td>
103
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
104
+ <div class="percent_graph">
105
+ <div class="covered" style="width:100px"></div>
106
+ <div class="uncovered" style="width:0px"></div>
107
+ </div></td>
108
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
109
+ <div class="percent_graph">
110
+ <div class="covered" style="width:100px"></div>
111
+ <div class="uncovered" style="width:0px"></div>
112
+ </div></td>
113
+ </tr>
114
+
115
+ <tr class="all_files all_coverage 110 lib hel odd">
116
+ <td class="left_align"><a href="lib-hel-asdoc_package_rb.html">lib/hel/asdoc_package.rb</a></td>
117
+ <td class='right_align'><tt>64</tt></td>
118
+ <td class='right_align'><tt>35</tt></td>
119
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
120
+ <div class="percent_graph">
121
+ <div class="covered" style="width:100px"></div>
122
+ <div class="uncovered" style="width:0px"></div>
123
+ </div></td>
124
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
125
+ <div class="percent_graph">
126
+ <div class="covered" style="width:100px"></div>
127
+ <div class="uncovered" style="width:0px"></div>
128
+ </div></td>
129
+ </tr>
130
+
131
+ <tr class="all_files all_coverage 110 lib hel opts even">
132
+ <td class="left_align"><a href="lib-hel-opts-tool_opts_rb.html">lib/hel/opts/tool_opts.rb</a></td>
133
+ <td class='right_align'><tt>78</tt></td>
134
+ <td class='right_align'><tt>52</tt></td>
135
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
136
+ <div class="percent_graph">
137
+ <div class="covered" style="width:100px"></div>
138
+ <div class="uncovered" style="width:0px"></div>
139
+ </div></td>
140
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
141
+ <div class="percent_graph">
142
+ <div class="covered" style="width:100px"></div>
143
+ <div class="uncovered" style="width:0px"></div>
144
+ </div></td>
145
+ </tr>
146
+
147
+ <tr class="all_files all_coverage 110 lib hel odd">
148
+ <td class="left_align"><a href="lib-hel-tool_rb.html">lib/hel/tool.rb</a></td>
149
+ <td class='right_align'><tt>60</tt></td>
150
+ <td class='right_align'><tt>30</tt></td>
151
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
152
+ <div class="percent_graph">
153
+ <div class="covered" style="width:100px"></div>
154
+ <div class="uncovered" style="width:0px"></div>
155
+ </div></td>
156
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
157
+ <div class="percent_graph">
158
+ <div class="covered" style="width:100px"></div>
159
+ <div class="uncovered" style="width:0px"></div>
160
+ </div></td>
161
+ </tr>
162
+
163
+ <tr class="all_files all_coverage 110 lib hel opts even">
164
+ <td class="left_align"><a href="lib-hel-opts-asdoc_package_opts_rb.html">lib/hel/opts/asdoc_package_opts.rb</a></td>
165
+ <td class='right_align'><tt>22</tt></td>
166
+ <td class='right_align'><tt>13</tt></td>
167
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
168
+ <div class="percent_graph">
169
+ <div class="covered" style="width:100px"></div>
170
+ <div class="uncovered" style="width:0px"></div>
171
+ </div></td>
172
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
173
+ <div class="percent_graph">
174
+ <div class="covered" style="width:100px"></div>
175
+ <div class="uncovered" style="width:0px"></div>
176
+ </div></td>
177
+ </tr>
178
+
179
+ <tr class="all_files all_coverage 110 lib hel odd">
180
+ <td class="left_align"><a href="lib-hel-unused_class_rb.html">lib/hel/unused_class.rb</a></td>
181
+ <td class='right_align'><tt>102</tt></td>
182
+ <td class='right_align'><tt>58</tt></td>
183
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
184
+ <div class="percent_graph">
185
+ <div class="covered" style="width:100px"></div>
186
+ <div class="uncovered" style="width:0px"></div>
187
+ </div></td>
188
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
189
+ <div class="percent_graph">
190
+ <div class="covered" style="width:100px"></div>
191
+ <div class="uncovered" style="width:0px"></div>
192
+ </div></td>
193
+ </tr>
194
+
195
+ <tr class="all_files all_coverage 110 lib even">
196
+ <td class="left_align"><a href="lib-hel_tools_rb.html">lib/hel_tools.rb</a></td>
197
+ <td class='right_align'><tt>17</tt></td>
198
+ <td class='right_align'><tt>14</tt></td>
199
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
200
+ <div class="percent_graph">
201
+ <div class="covered" style="width:100px"></div>
202
+ <div class="uncovered" style="width:0px"></div>
203
+ </div></td>
204
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
205
+ <div class="percent_graph">
206
+ <div class="covered" style="width:100px"></div>
207
+ <div class="uncovered" style="width:0px"></div>
208
+ </div></td>
209
+ </tr>
210
+
211
+ <tr class="all_files all_coverage 110 lib hel odd">
212
+ <td class="left_align"><a href="lib-hel-version_rb.html">lib/hel/version.rb</a></td>
213
+ <td class='right_align'><tt>12</tt></td>
214
+ <td class='right_align'><tt>9</tt></td>
215
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
216
+ <div class="percent_graph">
217
+ <div class="covered" style="width:100px"></div>
218
+ <div class="uncovered" style="width:0px"></div>
219
+ </div></td>
220
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
221
+ <div class="percent_graph">
222
+ <div class="covered" style="width:100px"></div>
223
+ <div class="uncovered" style="width:0px"></div>
224
+ </div></td>
225
+ </tr>
226
+
227
+ <tr class="all_files all_coverage 110 lib hel even">
228
+ <td class="left_align"><a href="lib-hel-project_tools_rb.html">lib/hel/project_tools.rb</a></td>
229
+ <td class='right_align'><tt>60</tt></td>
230
+ <td class='right_align'><tt>25</tt></td>
231
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
232
+ <div class="percent_graph">
233
+ <div class="covered" style="width:100px"></div>
234
+ <div class="uncovered" style="width:0px"></div>
235
+ </div></td>
236
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
237
+ <div class="percent_graph">
238
+ <div class="covered" style="width:100px"></div>
239
+ <div class="uncovered" style="width:0px"></div>
240
+ </div></td>
241
+ </tr>
242
+
243
+ <tr class="all_files all_coverage 110 lib hel odd">
244
+ <td class="left_align"><a href="lib-hel-stripper_rb.html">lib/hel/stripper.rb</a></td>
245
+ <td class='right_align'><tt>49</tt></td>
246
+ <td class='right_align'><tt>19</tt></td>
247
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
248
+ <div class="percent_graph">
249
+ <div class="covered" style="width:100px"></div>
250
+ <div class="uncovered" style="width:0px"></div>
251
+ </div></td>
252
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
253
+ <div class="percent_graph">
254
+ <div class="covered" style="width:100px"></div>
255
+ <div class="uncovered" style="width:0px"></div>
256
+ </div></td>
257
+ </tr>
258
+
259
+ <tr class="all_files all_coverage 110 lib hel opts even">
260
+ <td class="left_align"><a href="lib-hel-opts-unused_class_opts_rb.html">lib/hel/opts/unused_class_opts.rb</a></td>
261
+ <td class='right_align'><tt>24</tt></td>
262
+ <td class='right_align'><tt>15</tt></td>
263
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
264
+ <div class="percent_graph">
265
+ <div class="covered" style="width:100px"></div>
266
+ <div class="uncovered" style="width:0px"></div>
267
+ </div></td>
268
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
269
+ <div class="percent_graph">
270
+ <div class="covered" style="width:100px"></div>
271
+ <div class="uncovered" style="width:0px"></div>
272
+ </div></td>
273
+ </tr>
274
+
275
+ <tr class="all_files all_coverage 110 lib hel opts odd">
276
+ <td class="left_align"><a href="lib-hel-opts-manifest_opts_rb.html">lib/hel/opts/manifest_opts.rb</a></td>
277
+ <td class='right_align'><tt>22</tt></td>
278
+ <td class='right_align'><tt>13</tt></td>
279
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
280
+ <div class="percent_graph">
281
+ <div class="covered" style="width:100px"></div>
282
+ <div class="uncovered" style="width:0px"></div>
283
+ </div></td>
284
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
285
+ <div class="percent_graph">
286
+ <div class="covered" style="width:100px"></div>
287
+ <div class="uncovered" style="width:0px"></div>
288
+ </div></td>
289
+ </tr>
290
+
291
+ <tr class="all_files all_coverage 110 lib hel even">
292
+ <td class="left_align"><a href="lib-hel-manifest_rb.html">lib/hel/manifest.rb</a></td>
293
+ <td class='right_align'><tt>82</tt></td>
294
+ <td class='right_align'><tt>41</tt></td>
295
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
296
+ <div class="percent_graph">
297
+ <div class="covered" style="width:100px"></div>
298
+ <div class="uncovered" style="width:0px"></div>
299
+ </div></td>
300
+ <td class="left_align"><div class="percent_graph_legend"><tt class=''>100.00%</tt></div>
301
+ <div class="percent_graph">
302
+ <div class="covered" style="width:100px"></div>
303
+ <div class="uncovered" style="width:0px"></div>
304
+ </div></td>
305
+ </tr>
306
+
307
+ </tbody>
308
+ </table>
309
+ </div>
310
+
311
+ <p>Generated on Tue Aug 31 00:58:13 +0100 2010 with <a href="http://github.com/relevance/rcov">rcov 0.9.8</a></p>
312
+
313
+ <script type="text/javascript">
314
+ $(document).ready(function(){$("#report_table").tablesorter({widgets: ['zebra'], textExtraction: 'complex'});});
315
+ $('.filter').change(function(){
316
+ ff = $('#file_filter').val();
317
+ cf = $('#coverage_filter').val();
318
+ $('table#report_table tbody tr').each(function(i){
319
+ if ((this.className.split(" ").indexOf(ff) > -1) && (this.className.split(" ").indexOf(cf) > -1)) {
320
+ this.style.display = "";
321
+ } else {
322
+ this.style.display = "none";
323
+ };
324
+ restripe();
325
+ })
326
+ })
327
+ </script>
328
+
329
+ </body>
330
+ </html>