redcar 0.3.1dev → 0.3.2dev

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 (316) hide show
  1. data/CHANGES +34 -1
  2. data/README.md +2 -1
  3. data/ROADMAP.md +13 -45
  4. data/Rakefile +15 -14
  5. data/bin/redcar +4 -1
  6. data/lib/plugin_manager/README.md +61 -0
  7. data/lib/plugin_manager/Rakefile +55 -0
  8. data/lib/plugin_manager/bin/plugin_manager +4 -0
  9. data/lib/plugin_manager/lib/plugin_manager.rb +107 -0
  10. data/lib/plugin_manager/lib/plugin_manager/definition_builder.rb +37 -0
  11. data/lib/plugin_manager/lib/plugin_manager/plugin.rb +9 -0
  12. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +50 -0
  13. data/lib/plugin_manager/plugin_manager.gemspec +33 -0
  14. data/lib/plugin_manager/spec/fixtures/error_in_definition/core/plugin.rb +2 -0
  15. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/core.rb +4 -0
  16. data/lib/plugin_manager/spec/fixtures/error_in_plugin/core/plugin.rb +7 -0
  17. data/lib/plugin_manager/spec/fixtures/example/core/core.rb +20 -0
  18. data/lib/plugin_manager/spec/fixtures/example/core/plugin.rb +7 -0
  19. data/lib/plugin_manager/spec/fixtures/example/debug/debug.rb +6 -0
  20. data/lib/plugin_manager/spec/fixtures/example/debug/plugin.rb +8 -0
  21. data/lib/plugin_manager/spec/fixtures/example/extras/extras.rb +6 -0
  22. data/lib/plugin_manager/spec/fixtures/example/extras/plugin.rb +8 -0
  23. data/lib/plugin_manager/spec/fixtures/two_versions1/core/core.rb +20 -0
  24. data/lib/plugin_manager/spec/fixtures/two_versions1/core/plugin.rb +7 -0
  25. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/core.rb +20 -0
  26. data/lib/plugin_manager/spec/fixtures/two_versions1/core2/plugin.rb +7 -0
  27. data/lib/plugin_manager/spec/fixtures/two_versions2/core/core.rb +20 -0
  28. data/lib/plugin_manager/spec/fixtures/two_versions2/core/plugin.rb +7 -0
  29. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/core.rb +20 -0
  30. data/lib/plugin_manager/spec/fixtures/two_versions2/core2/plugin.rb +8 -0
  31. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/core.rb +10 -0
  32. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/core/plugin.rb +7 -0
  33. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/debug.rb +6 -0
  34. data/lib/plugin_manager/spec/fixtures/unmet_dependencies1/debug/plugin.rb +8 -0
  35. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/core.rb +10 -0
  36. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/core/plugin.rb +7 -0
  37. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/debug.rb +6 -0
  38. data/lib/plugin_manager/spec/fixtures/unmet_dependencies2/debug/plugin.rb +8 -0
  39. data/lib/plugin_manager/spec/plugin_manager_spec.rb +208 -0
  40. data/lib/plugin_manager/spec/spec_helper.rb +3 -0
  41. data/lib/redcar.rb +8 -3
  42. data/lib/redcar/boot.rb +59 -56
  43. data/lib/redcar/installer.rb +1 -1
  44. data/lib/redcar/instance_exec.rb +25 -0
  45. data/lib/redcar/runner.rb +5 -1
  46. data/lib/redcar/usage.rb +5 -1
  47. data/plugins/application/icons/close.png +0 -0
  48. data/plugins/application/lib/application.rb +61 -28
  49. data/plugins/application/lib/application/clipboard.rb +71 -0
  50. data/plugins/application/lib/application/dialog.rb +63 -0
  51. data/plugins/application/lib/application/menu.rb +32 -1
  52. data/plugins/application/lib/application/menu/builder.rb +10 -4
  53. data/plugins/application/lib/application/menu/item.rb +16 -3
  54. data/plugins/application/lib/application/notebook.rb +5 -0
  55. data/plugins/application/lib/application/speedbar.rb +73 -0
  56. data/plugins/application/lib/application/window.rb +25 -0
  57. data/plugins/application/plugin.rb +8 -0
  58. data/plugins/application/spec/application/clipboard_spec.rb +36 -0
  59. data/plugins/application/spec/application/menu_spec.rb +73 -1
  60. data/plugins/application/spec/application/speedbar_spec.rb +46 -0
  61. data/plugins/application/spec/spec_helper.rb +1 -1
  62. data/plugins/application_swt/lib/application_swt.rb +18 -11
  63. data/plugins/application_swt/lib/application_swt/clipboard.rb +42 -0
  64. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +68 -0
  65. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
  66. data/plugins/application_swt/lib/application_swt/html_tab.rb +32 -0
  67. data/plugins/application_swt/lib/application_swt/menu.rb +57 -21
  68. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +39 -2
  69. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -0
  70. data/plugins/application_swt/lib/application_swt/speedbar.rb +187 -0
  71. data/plugins/application_swt/lib/application_swt/swt_wrapper.rb +24 -1
  72. data/plugins/application_swt/lib/application_swt/window.rb +33 -3
  73. data/plugins/application_swt/plugin.rb +8 -0
  74. data/plugins/application_swt/spec/spec_helper.rb +1 -1
  75. data/plugins/auto_completer/features/auto_complete.feature +65 -0
  76. data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +4 -0
  77. data/plugins/auto_completer/features/support/env.rb +4 -0
  78. data/plugins/auto_completer/lib/auto_completer.rb +99 -0
  79. data/plugins/auto_completer/lib/auto_completer/document_controller.rb +52 -0
  80. data/plugins/auto_completer/lib/auto_completer/word_iterator.rb +48 -0
  81. data/plugins/auto_completer/lib/auto_completer/word_list.rb +40 -0
  82. data/plugins/auto_completer/plugin.rb +10 -0
  83. data/plugins/auto_indenter/lib/auto_indenter.rb +1 -1
  84. data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +1 -1
  85. data/plugins/auto_indenter/plugin.rb +8 -0
  86. data/plugins/core/lib/core.rb +6 -30
  87. data/plugins/core/lib/core/gui.rb +7 -2
  88. data/plugins/core/lib/core/logger.rb +7 -4
  89. data/plugins/core/lib/core/plugin/storage.rb +15 -5
  90. data/plugins/core/plugin.rb +7 -0
  91. data/plugins/core/spec/core/storage_spec.rb +0 -9
  92. data/plugins/edit_view/features/cut_and_paste.feature +45 -0
  93. data/plugins/edit_view/features/step_definitions/editing_steps.rb +22 -0
  94. data/plugins/edit_view/features/step_definitions/key_steps.rb +1 -1
  95. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
  96. data/plugins/edit_view/features/step_definitions/tab_steps.rb +2 -0
  97. data/plugins/edit_view/features/step_definitions/window_steps.rb +1 -1
  98. data/plugins/edit_view/features/support/env.rb +2 -2
  99. data/plugins/edit_view/lib/edit_view.rb +24 -13
  100. data/plugins/edit_view/lib/edit_view/document.rb +233 -15
  101. data/plugins/edit_view/lib/edit_view/edit_tab.rb +2 -2
  102. data/plugins/edit_view/plugin.rb +9 -0
  103. data/plugins/edit_view/spec/spec_helper.rb +1 -1
  104. data/plugins/edit_view_swt/lib/edit_view_swt.rb +37 -8
  105. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +59 -24
  106. data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +66 -0
  107. data/plugins/edit_view_swt/plugin.rb +9 -0
  108. data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +29 -0
  109. data/plugins/edit_view_swt/spec/spec_helper.rb +6 -0
  110. data/plugins/html_view/assets/blueprint/ie.css +35 -0
  111. data/plugins/html_view/assets/blueprint/print.css +29 -0
  112. data/plugins/html_view/assets/blueprint/screen.css +257 -0
  113. data/plugins/html_view/assets/blueprint/src/forms.css +65 -0
  114. data/plugins/html_view/assets/blueprint/src/grid.css +281 -0
  115. data/plugins/html_view/assets/blueprint/src/grid.png +0 -0
  116. data/plugins/html_view/assets/blueprint/src/ie.css +76 -0
  117. data/plugins/html_view/assets/blueprint/src/print.css +85 -0
  118. data/plugins/html_view/assets/blueprint/src/reset.css +38 -0
  119. data/plugins/html_view/assets/blueprint/src/typography.css +106 -0
  120. data/plugins/html_view/assets/jquery-1.4.min.js +151 -0
  121. data/plugins/html_view/assets/redcar.css +12 -0
  122. data/plugins/html_view/lib/html_controller.rb +5 -0
  123. data/plugins/html_view/lib/html_view.rb +47 -0
  124. data/plugins/html_view/lib/html_view/html_tab.rb +16 -0
  125. data/plugins/html_view/plugin.rb +12 -0
  126. data/plugins/my_plugin/lib/my_plugin.rb +55 -0
  127. data/plugins/my_plugin/plugin.rb +8 -0
  128. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +62 -0
  129. data/plugins/plugin_manager_ui/plugin.rb +12 -0
  130. data/plugins/plugin_manager_ui/views/index.html.erb +31 -0
  131. data/plugins/project/lib/project.rb +27 -13
  132. data/plugins/project/lib/project/find_file_dialog.rb +25 -19
  133. data/plugins/project/plugin.rb +8 -0
  134. data/plugins/project/spec/spec_helper.rb +1 -1
  135. data/plugins/redcar/plugin.rb +13 -0
  136. data/plugins/redcar/redcar.rb +249 -8
  137. data/plugins/repl/lib/repl.rb +22 -14
  138. data/plugins/repl/plugin.rb +8 -0
  139. data/plugins/repl/spec/spec_helper.rb +1 -1
  140. data/plugins/tree/plugin.rb +9 -0
  141. data/plugins/tree/spec/spec_helper.rb +1 -1
  142. data/plugins/tree_view_swt/plugin.rb +9 -0
  143. data/textmate/Bundles/Apache.tmbundle/Syntaxes/Apache.plist +544 -0
  144. data/textmate/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage +120 -0
  145. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist +88 -0
  146. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Markdown__.plist +89 -0
  147. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Text__.plist +74 -0
  148. data/textmate/Bundles/Blogging.tmbundle/Syntaxes/Blog___Textile__.plist +74 -0
  149. data/textmate/Bundles/Bundle Development.tmbundle/Syntaxes/LanguageGrammar.tmLanguage +1829 -0
  150. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/Build.tmLanguage +142 -0
  151. data/textmate/Bundles/C Sharp.tmbundle/Syntaxes/C__.tmLanguage +524 -0
  152. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/Qt_C____.tmLanguage +62 -0
  153. data/textmate/Bundles/C++ Qt.tmbundle/Syntaxes/qmake_Project.tmLanguage +308 -0
  154. data/textmate/Bundles/C.tmbundle/Syntaxes/C.plist +90 -48
  155. data/textmate/Bundles/Clojure.tmbundle/Syntaxes/Clojure.tmLanguage +427 -0
  156. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage +106 -13
  157. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage +177 -2
  158. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +109 -17
  159. data/textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage +908 -0
  160. data/textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist +229 -0
  161. data/textmate/Bundles/DokuWiki.tmbundle/Syntaxes/DokuWiki.tmLanguage +649 -0
  162. data/textmate/Bundles/F-Script.tmbundle/Syntaxes/F__Script.plist +219 -0
  163. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Haskell.plist +646 -0
  164. data/textmate/Bundles/Haskell.tmbundle/Syntaxes/Literate_Haskell.plist +90 -0
  165. data/textmate/Bundles/Io.tmbundle/Syntaxes/Io.plist +225 -0
  166. data/textmate/Bundles/JSON.tmbundle/Syntaxes/JSON.tmLanguage +285 -0
  167. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype.tmLanguage +193 -0
  168. data/textmate/Bundles/JavaScript Prototype & Script_aculo_us.tmbundle/Syntaxes/JavaScript____Prototype_Bracketed.tmLanguage +394 -0
  169. data/textmate/Bundles/JavaScript jQuery.tmbundle/Syntaxes/jQuery___JavaScript__.tmLanguage +440 -0
  170. data/textmate/Bundles/JavaScript.tmbundle/Syntaxes/JavaScript.plist +712 -0
  171. data/textmate/Bundles/Latex.tmbundle/Syntaxes/Bibtex.plist +406 -0
  172. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX.plist +1601 -0
  173. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Beamer.plist +106 -0
  174. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Log.plist +141 -0
  175. data/textmate/Bundles/Latex.tmbundle/Syntaxes/LaTeX_Memoir.tmLanguage +165 -0
  176. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX.plist +246 -0
  177. data/textmate/Bundles/Latex.tmbundle/Syntaxes/TeX_Math.plist +132 -0
  178. data/textmate/Bundles/Lisp.tmbundle/Syntaxes/Lisp.plist +160 -0
  179. data/textmate/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist +103 -0
  180. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist +1192 -0
  181. data/textmate/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage +80 -0
  182. data/textmate/Bundles/PHP.tmbundle/Syntaxes/PHP.plist +3481 -0
  183. data/textmate/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage +217 -0
  184. data/textmate/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage +339 -0
  185. data/textmate/Bundles/Postscript.tmbundle/Syntaxes/Postscript.tmLanguage +321 -0
  186. data/textmate/Bundles/Processing.tmbundle/Syntaxes/Processing.plist +296 -0
  187. data/textmate/Bundles/Property List.tmbundle/Syntaxes/Property_List.tmLanguage +1650 -0
  188. data/textmate/Bundles/Python Django Templates.tmbundle/Syntaxes/HTML___Django__.tmLanguage +104 -0
  189. data/textmate/Bundles/Python Django.tmbundle/Syntaxes/Python_Django.tmLanguage +57 -0
  190. data/textmate/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage +3016 -0
  191. data/textmate/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage +299 -0
  192. data/textmate/Bundles/Rez.tmbundle/Syntaxes/Rez.plist +219 -0
  193. data/textmate/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +403 -0
  194. data/textmate/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage +142 -0
  195. data/textmate/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +139 -49
  196. data/textmate/Bundles/SQL.tmbundle/Syntaxes/SQL.plist +705 -0
  197. data/textmate/Bundles/SSH-Config.tmbundle/Syntaxes/SSH__Config.tmLanguage +88 -0
  198. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage +609 -0
  199. data/textmate/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage +54 -0
  200. data/textmate/Bundles/ShellScript.tmbundle/Syntaxes/Shell__Unix__Generic.plist +1855 -0
  201. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/CSV.tmLanguage +178 -0
  202. data/textmate/Bundles/Tabular.tmbundle/Syntaxes/TSV.tmLanguage +135 -0
  203. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Regular_Expressions___Oniguruma__.tmLanguage +295 -0
  204. data/textmate/Bundles/TextMate.tmbundle/Syntaxes/Release_Notes.tmLanguage +126 -0
  205. data/textmate/Bundles/Textile.tmbundle/Syntaxes/Textile.plist +490 -0
  206. data/textmate/Bundles/Thrift.tmbundle/Syntaxes/Thrift.tmLanguage +1024 -0
  207. data/textmate/Bundles/XML.tmbundle/Syntaxes/XML.plist +576 -0
  208. data/textmate/Bundles/XML.tmbundle/Syntaxes/XSL.plist +157 -0
  209. data/textmate/Bundles/YAML.tmbundle/Syntaxes/YAML.plist +466 -0
  210. data/textmate/Themes/Django.tmTheme +436 -0
  211. metadata +371 -325
  212. data/config/default.yaml +0 -15
  213. data/lib/freebase2/README.txt +0 -47
  214. data/lib/freebase2/bin/default.yaml +0 -15
  215. data/lib/freebase2/bin/install.rb +0 -42
  216. data/lib/freebase2/bin/run.rb +0 -48
  217. data/lib/freebase2/lib/freebase/configuration.rb +0 -535
  218. data/lib/freebase2/lib/freebase/core.rb +0 -197
  219. data/lib/freebase2/lib/freebase/databus.rb +0 -1128
  220. data/lib/freebase2/lib/freebase/freebase.rb +0 -60
  221. data/lib/freebase2/lib/freebase/logger.rb +0 -117
  222. data/lib/freebase2/lib/freebase/plugin.rb +0 -384
  223. data/lib/freebase2/lib/freebase/properties.rb +0 -130
  224. data/lib/freebase2/lib/freebase/readers.rb +0 -328
  225. data/lib/freebase2/notes +0 -61
  226. data/lib/freebase2/plugins/raa_webrick/httpd.rb +0 -125
  227. data/lib/freebase2/plugins/raa_webrick/plugin.yaml +0 -7
  228. data/lib/freebase2/plugins/raa_webrick/web_root/test.html +0 -5
  229. data/lib/freebase2/plugins/raa_webrick/webserver.yaml +0 -6
  230. data/lib/freebase2/plugins/raa_xmlrpc4r/plugin.xml +0 -8
  231. data/lib/freebase2/plugins/raa_xmlrpc4r/rpcd.rb +0 -54
  232. data/lib/freebase2/regress/README +0 -1
  233. data/lib/little_plugger/History.txt +0 -20
  234. data/lib/little_plugger/Rakefile +0 -34
  235. data/lib/little_plugger/lib/little-plugger.rb +0 -323
  236. data/lib/little_plugger/spec/little-plugger_spec.rb +0 -26
  237. data/lib/little_plugger/spec/spec_helper.rb +0 -16
  238. data/lib/logging/History.txt +0 -240
  239. data/lib/logging/Rakefile +0 -37
  240. data/lib/logging/data/bad_logging_1.rb +0 -13
  241. data/lib/logging/data/bad_logging_2.rb +0 -21
  242. data/lib/logging/data/logging.rb +0 -42
  243. data/lib/logging/data/logging.yaml +0 -63
  244. data/lib/logging/data/simple_logging.rb +0 -13
  245. data/lib/logging/examples/appenders.rb +0 -47
  246. data/lib/logging/examples/classes.rb +0 -41
  247. data/lib/logging/examples/consolidation.rb +0 -83
  248. data/lib/logging/examples/formatting.rb +0 -51
  249. data/lib/logging/examples/hierarchies.rb +0 -73
  250. data/lib/logging/examples/layouts.rb +0 -48
  251. data/lib/logging/examples/loggers.rb +0 -29
  252. data/lib/logging/examples/names.rb +0 -43
  253. data/lib/logging/examples/simple.rb +0 -17
  254. data/lib/logging/lib/logging.rb +0 -501
  255. data/lib/logging/lib/logging/appender.rb +0 -251
  256. data/lib/logging/lib/logging/appenders.rb +0 -131
  257. data/lib/logging/lib/logging/appenders/buffering.rb +0 -168
  258. data/lib/logging/lib/logging/appenders/console.rb +0 -60
  259. data/lib/logging/lib/logging/appenders/email.rb +0 -75
  260. data/lib/logging/lib/logging/appenders/file.rb +0 -58
  261. data/lib/logging/lib/logging/appenders/growl.rb +0 -197
  262. data/lib/logging/lib/logging/appenders/io.rb +0 -69
  263. data/lib/logging/lib/logging/appenders/rolling_file.rb +0 -293
  264. data/lib/logging/lib/logging/appenders/string_io.rb +0 -68
  265. data/lib/logging/lib/logging/appenders/syslog.rb +0 -194
  266. data/lib/logging/lib/logging/config/configurator.rb +0 -188
  267. data/lib/logging/lib/logging/config/yaml_configurator.rb +0 -191
  268. data/lib/logging/lib/logging/layout.rb +0 -117
  269. data/lib/logging/lib/logging/layouts.rb +0 -47
  270. data/lib/logging/lib/logging/layouts/basic.rb +0 -32
  271. data/lib/logging/lib/logging/layouts/parseable.rb +0 -211
  272. data/lib/logging/lib/logging/layouts/pattern.rb +0 -311
  273. data/lib/logging/lib/logging/log_event.rb +0 -45
  274. data/lib/logging/lib/logging/logger.rb +0 -503
  275. data/lib/logging/lib/logging/repository.rb +0 -232
  276. data/lib/logging/lib/logging/root_logger.rb +0 -61
  277. data/lib/logging/lib/logging/stats.rb +0 -278
  278. data/lib/logging/lib/logging/utils.rb +0 -153
  279. data/lib/logging/lib/spec/logging_helper.rb +0 -34
  280. data/lib/logging/test/appenders/test_buffered_io.rb +0 -176
  281. data/lib/logging/test/appenders/test_console.rb +0 -66
  282. data/lib/logging/test/appenders/test_email.rb +0 -170
  283. data/lib/logging/test/appenders/test_file.rb +0 -95
  284. data/lib/logging/test/appenders/test_growl.rb +0 -127
  285. data/lib/logging/test/appenders/test_io.rb +0 -129
  286. data/lib/logging/test/appenders/test_rolling_file.rb +0 -200
  287. data/lib/logging/test/appenders/test_syslog.rb +0 -194
  288. data/lib/logging/test/benchmark.rb +0 -86
  289. data/lib/logging/test/config/test_configurator.rb +0 -70
  290. data/lib/logging/test/config/test_yaml_configurator.rb +0 -40
  291. data/lib/logging/test/layouts/test_basic.rb +0 -42
  292. data/lib/logging/test/layouts/test_json.rb +0 -112
  293. data/lib/logging/test/layouts/test_pattern.rb +0 -198
  294. data/lib/logging/test/layouts/test_yaml.rb +0 -121
  295. data/lib/logging/test/setup.rb +0 -44
  296. data/lib/logging/test/test_appender.rb +0 -152
  297. data/lib/logging/test/test_consolidate.rb +0 -46
  298. data/lib/logging/test/test_layout.rb +0 -110
  299. data/lib/logging/test/test_log_event.rb +0 -80
  300. data/lib/logging/test/test_logger.rb +0 -699
  301. data/lib/logging/test/test_logging.rb +0 -267
  302. data/lib/logging/test/test_repository.rb +0 -158
  303. data/lib/logging/test/test_root_logger.rb +0 -81
  304. data/lib/logging/test/test_stats.rb +0 -274
  305. data/lib/logging/test/test_utils.rb +0 -116
  306. data/plugins/application/plugin.yaml +0 -11
  307. data/plugins/application_swt/plugin.yaml +0 -11
  308. data/plugins/auto_indenter/plugin.yaml +0 -12
  309. data/plugins/core/plugin.yaml +0 -7
  310. data/plugins/edit_view/plugin.yaml +0 -14
  311. data/plugins/edit_view_swt/plugin.yaml +0 -14
  312. data/plugins/project/plugin.yaml +0 -12
  313. data/plugins/redcar/plugin.yaml +0 -18
  314. data/plugins/repl/plugin.yaml +0 -12
  315. data/plugins/tree/plugin.yaml +0 -14
  316. data/plugins/tree_view_swt/plugin.yaml +0 -14
@@ -1,198 +0,0 @@
1
-
2
- require File.join(File.dirname(__FILE__), %w[.. setup])
3
-
4
- module TestLogging
5
- module TestLayouts
6
-
7
- class TestPattern < Test::Unit::TestCase
8
- include LoggingTestCase
9
-
10
- def setup
11
- super
12
- @layout = Logging.layouts.pattern({})
13
- @levels = Logging::LEVELS
14
- @date_fmt = '\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}'
15
- Thread.current[:name] = nil
16
- end
17
-
18
- def test_date_method
19
- assert_nil @layout.date_method
20
- end
21
-
22
- def test_date_method_eq
23
- @layout.date_method = :to_f
24
- assert_equal :to_f, @layout.date_method
25
- assert_instance_of Float, @layout.format_date(Time.now)
26
-
27
- @layout.date_method = 'usec'
28
- assert_equal 'usec', @layout.date_method
29
- assert_instance_of Fixnum, @layout.format_date(Time.now)
30
-
31
- @layout.date_method = :to_s
32
- assert_equal :to_s, @layout.date_method
33
- assert_instance_of String, @layout.format_date(Time.now)
34
-
35
- # now, even if we have defined a date_pattern, the date_method should
36
- # supersede the date_pattern
37
- @layout.date_pattern = '%Y'
38
-
39
- @layout.date_method = 'usec'
40
- assert_equal 'usec', @layout.date_method
41
- assert_instance_of Fixnum, @layout.format_date(Time.now)
42
- end
43
-
44
- def test_date_pattern
45
- assert_equal '%Y-%m-%d %H:%M:%S', @layout.date_pattern
46
- end
47
-
48
- def test_date_pattern_eq
49
- @layout.date_pattern = '%Y'
50
- assert_equal '%Y', @layout.date_pattern
51
- assert_match %r/\A\d{4}\z/, @layout.format_date(Time.now)
52
-
53
- @layout.date_pattern = '%H:%M'
54
- assert_equal '%H:%M', @layout.date_pattern
55
- assert_match %r/\A\d{2}:\d{2}\z/, @layout.format_date(Time.now)
56
- end
57
-
58
- def test_format
59
- fmt = '\[' + @date_fmt + '\] %s -- %s : %s\n'
60
-
61
- event = Logging::LogEvent.new('ArrayLogger', @levels['info'],
62
- 'log message', false)
63
- rgxp = Regexp.new(sprintf(fmt, 'INFO ', 'ArrayLogger', 'log message'))
64
- assert_match rgxp, @layout.format(event)
65
-
66
- event.data = [1, 2, 3, 4]
67
- rgxp = Regexp.new(sprintf(fmt, 'INFO ', 'ArrayLogger',
68
- Regexp.escape("<Array> #{[1,2,3,4]}")))
69
- assert_match rgxp, @layout.format(event)
70
-
71
- event.level = @levels['debug']
72
- event.data = 'and another message'
73
- rgxp = Regexp.new(
74
- sprintf(fmt, 'DEBUG', 'ArrayLogger', 'and another message'))
75
- assert_match rgxp, @layout.format(event)
76
-
77
- event.logger = 'Test'
78
- event.level = @levels['fatal']
79
- event.data = Exception.new
80
- rgxp = Regexp.new(
81
- sprintf(fmt, 'FATAL', 'Test', '<Exception> Exception'))
82
- assert_match rgxp, @layout.format(event)
83
- end
84
-
85
- def test_format_date
86
- rgxp = Regexp.new @date_fmt
87
- assert_match rgxp, @layout.format_date(Time.now)
88
- end
89
-
90
- def test_pattern
91
- assert_equal "[%d] %-5l -- %c : %m\n", @layout.pattern
92
- end
93
-
94
- def test_pattern_eq
95
- event = Logging::LogEvent.new('TestLogger', @levels['info'],
96
- ['log message'], false)
97
-
98
- @layout.pattern = '%d'
99
- assert_equal '%d', @layout.pattern
100
- assert_match Regexp.new(@date_fmt), @layout.format(event)
101
- end
102
-
103
- def test_pattern_all
104
- event = Logging::LogEvent.new('TestLogger', @levels['info'],
105
- 'log message', false)
106
- event.file = 'test_file.rb'
107
- event.line = '123'
108
- event.method = 'method_name'
109
-
110
- @layout.pattern = '%c'
111
- assert_equal 'TestLogger', @layout.format(event)
112
-
113
- @layout.pattern = '%d'
114
- assert_match Regexp.new(@date_fmt), @layout.format(event)
115
-
116
- @layout.pattern = '%F'
117
- assert_equal 'test_file.rb', @layout.format(event)
118
-
119
- @layout.pattern = '%l'
120
- assert_equal 'INFO', @layout.format(event)
121
-
122
- @layout.pattern = '%L'
123
- assert_equal '123', @layout.format(event)
124
-
125
- @layout.pattern = '%m'
126
- assert_equal 'log message', @layout.format(event)
127
-
128
- @layout.pattern = '%M'
129
- assert_equal 'method_name', @layout.format(event)
130
-
131
- @layout.pattern = '%p'
132
- assert_match %r/\A\d+\z/, @layout.format(event)
133
-
134
- @layout.pattern = '%r'
135
- assert_match %r/\A\d+\z/, @layout.format(event)
136
-
137
- @layout.pattern = '%t'
138
- assert_match %r/\A-?\d+\z/, @layout.format(event)
139
-
140
- @layout.pattern = '%T'
141
- assert_equal "", @layout.format(event)
142
- Thread.current[:name] = "Main"
143
- assert_equal "Main", @layout.format(event)
144
-
145
- @layout.pattern = '%%'
146
- assert_equal '%', @layout.format(event)
147
-
148
- # 'z' is not a recognized format character
149
- assert_raise(ArgumentError) {
150
- @layout.pattern = '[%d] %% %c - %l %z blah'
151
- }
152
- assert_equal '%', @layout.format(event)
153
-
154
- @layout.pattern = '%5l'
155
- assert_equal ' INFO', @layout.format(event)
156
-
157
- @layout.pattern = '%-5l'
158
- assert_equal 'INFO ', @layout.format(event)
159
-
160
- @layout.pattern = '%.1l, %c'
161
- assert_equal 'I, TestLogger', @layout.format(event)
162
-
163
- @layout.pattern = '%7.7m'
164
- assert_equal 'log mes', @layout.format(event)
165
-
166
- event.data = 'tim'
167
- assert_equal ' tim', @layout.format(event)
168
-
169
- @layout.pattern = '%-7.7m'
170
- assert_equal 'tim ', @layout.format(event)
171
- end
172
-
173
- def test_pattern_logger_name_precision
174
- event = Logging::LogEvent.new('Foo', @levels['info'], 'message', false)
175
-
176
- @layout.pattern = '%c{2}'
177
- assert_equal 'Foo', @layout.format(event)
178
-
179
- event.logger = 'Foo::Bar::Baz::Buz'
180
- assert_equal 'Baz::Buz', @layout.format(event)
181
-
182
- assert_raise(ArgumentError) {
183
- @layout.pattern = '%c{0}'
184
- }
185
-
186
- @layout.pattern = '%c{foo}'
187
- event.logger = 'Foo::Bar'
188
- assert_equal 'Foo::Bar{foo}', @layout.format(event)
189
-
190
- @layout.pattern = '%m{42}'
191
- assert_equal 'message{42}', @layout.format(event)
192
- end
193
-
194
- end # class TestBasic
195
- end # module TestLayouts
196
- end # module TestLogging
197
-
198
- # EOF
@@ -1,121 +0,0 @@
1
-
2
- require File.join(File.dirname(__FILE__), %w[.. setup])
3
-
4
- module TestLogging
5
- module TestLayouts
6
-
7
- class TestYaml < Test::Unit::TestCase
8
- include LoggingTestCase
9
-
10
- def setup
11
- super
12
- @layout = Logging.layouts.yaml({})
13
- @levels = Logging::LEVELS
14
- @date_fmt = '\d{4}-\d{2}-\d{2} \d{2}:\d{2}:\d{2}'
15
- Thread.current[:name] = nil
16
- end
17
-
18
- def test_format
19
- h = {
20
- 'level' => 'INFO',
21
- 'logger' => 'ArrayLogger',
22
- 'message' => 'log message'
23
- }
24
-
25
- event = Logging::LogEvent.new('ArrayLogger', @levels['info'],
26
- 'log message', false)
27
- assert_yaml_match h, @layout.format(event)
28
-
29
- event.data = [1, 2, 3, 4]
30
- h['message'] = "<Array> #{[1,2,3,4]}"
31
- assert_yaml_match h, @layout.format(event)
32
-
33
- event.level = @levels['debug']
34
- event.data = 'and another message'
35
- h['level'] = 'DEBUG'
36
- h['message'] = 'and another message'
37
- assert_yaml_match h, @layout.format(event)
38
-
39
- event.logger = 'Test'
40
- event.level = @levels['fatal']
41
- event.data = Exception.new
42
- h['level'] = 'FATAL'
43
- h['logger'] = 'Test'
44
- h['message'] = '<Exception> Exception'
45
- assert_yaml_match h, @layout.format(event)
46
- end
47
-
48
- def test_items
49
- assert_equal %w[timestamp level logger message], @layout.items
50
- end
51
-
52
- def test_items_eq
53
- event = Logging::LogEvent.new('TestLogger', @levels['info'],
54
- ['log message'], false)
55
-
56
- @layout.items = %w[timestamp]
57
- assert_equal %w[timestamp], @layout.items
58
- assert_match %r/--- \ntimestamp: #@date_fmt\n/, @layout.format(event)
59
-
60
- # 'foo' is not a recognized item
61
- assert_raise(ArgumentError) {
62
- @layout.items = %w[timestamp logger foo]
63
- }
64
- end
65
-
66
- def test_items_all
67
- event = Logging::LogEvent.new('TestLogger', @levels['info'],
68
- 'log message', false)
69
- event.file = 'test_file.rb'
70
- event.line = 123
71
- event.method = 'method_name'
72
-
73
- @layout.items = %w[logger]
74
- assert_equal %Q[--- \nlogger: TestLogger\n], @layout.format(event)
75
-
76
- @layout.items = %w[file]
77
- assert_equal %Q[--- \nfile: test_file.rb\n], @layout.format(event)
78
-
79
- @layout.items = %w[level]
80
- assert_equal %Q[--- \nlevel: INFO\n], @layout.format(event)
81
-
82
- @layout.items = %w[line]
83
- assert_equal %Q[--- \nline: 123\n], @layout.format(event)
84
-
85
- @layout.items = %w[message]
86
- assert_equal %Q[--- \nmessage: log message\n], @layout.format(event)
87
-
88
- @layout.items = %w[method]
89
- assert_equal %Q[--- \nmethod: method_name\n], @layout.format(event)
90
-
91
- @layout.items = %w[pid]
92
- assert_match %r/\A--- \npid: \d+\n\z/, @layout.format(event)
93
-
94
- @layout.items = %w[millis]
95
- assert_match %r/\A--- \nmillis: \d+\n\z/, @layout.format(event)
96
-
97
- @layout.items = %w[thread_id]
98
- assert_match %r/\A--- \nthread_id: -?\d+\n\z/, @layout.format(event)
99
-
100
- @layout.items = %w[thread]
101
- assert_equal %Q[--- \nthread: \n], @layout.format(event)
102
- Thread.current[:name] = "Main"
103
- assert_equal %Q[--- \nthread: Main\n], @layout.format(event)
104
- end
105
-
106
- private
107
-
108
- def assert_yaml_match( expected, actual )
109
- actual = YAML.load(actual)
110
-
111
- assert_match %r/#@date_fmt/o, actual['timestamp']
112
- assert_equal expected['level'], actual['level']
113
- assert_equal expected['logger'], actual['logger']
114
- assert_equal expected['message'], actual['message']
115
- end
116
-
117
- end # class TestYaml
118
- end # module TestLayouts
119
- end # module TestLogging
120
-
121
- # EOF
@@ -1,44 +0,0 @@
1
-
2
- # Equivalent to a header guard in C/C++
3
- # Used to prevent the class/module from being loaded more than once
4
- unless defined? LOGGING_TEST_SETUP
5
- LOGGING_TEST_SETUP = true
6
-
7
- require 'rubygems'
8
- require 'test/unit'
9
- require 'fileutils'
10
- begin
11
- require 'turn'
12
- rescue LoadError; end
13
-
14
- # This line is needed for Ruby 1.9 -- hashes throw a "KeyError" in 1.9
15
- # whereas they throw an "IndexError" in 1.8
16
- #
17
- KeyError = IndexError if not defined? KeyError
18
-
19
- require File.join(File.dirname(__FILE__), %w[.. lib logging])
20
-
21
-
22
- module TestLogging
23
- module LoggingTestCase
24
-
25
- TMP = 'tmp'
26
-
27
- def setup
28
- super
29
- Logging.reset
30
- FileUtils.rm_rf TMP
31
- FileUtils.mkdir TMP
32
- end
33
-
34
- def teardown
35
- super
36
- FileUtils.rm_rf TMP
37
- end
38
-
39
- end # module LoggingTestCase
40
- end # module TestLogging
41
-
42
- end # unless defined?
43
-
44
- # EOF
@@ -1,152 +0,0 @@
1
-
2
- require File.join(File.dirname(__FILE__), %w[setup])
3
-
4
- module TestLogging
5
-
6
- class TestAppender < Test::Unit::TestCase
7
- include LoggingTestCase
8
-
9
- def setup
10
- super
11
-
12
- ::Logging.init
13
- @levels = ::Logging::LEVELS
14
- @event = ::Logging::LogEvent.new('logger', @levels['debug'],
15
- 'message', false)
16
- @appender = ::Logging::Appender.new 'test_appender'
17
- end
18
-
19
- def test_append
20
- ary = []
21
- @appender.instance_variable_set :@ary, ary
22
- def @appender.write( event )
23
- str = event.instance_of?(::Logging::LogEvent) ?
24
- @layout.format(event) : event.to_s
25
- @ary << str
26
- end
27
-
28
- assert_nothing_raised {@appender.append @event}
29
- assert_equal "DEBUG logger : message\n", ary.pop
30
-
31
- @appender.level = :info
32
- @appender.append @event
33
- assert_nil ary.pop
34
-
35
- @event.level = @levels['info']
36
- @appender.append @event
37
- assert_equal " INFO logger : message\n", ary.pop
38
-
39
- @appender.close
40
- assert_raise(RuntimeError) {@appender.append @event}
41
- end
42
-
43
- def test_close
44
- assert_equal false, @appender.closed?
45
-
46
- @appender.close
47
- assert_equal true, @appender.closed?
48
- end
49
-
50
- def test_closed_eh
51
- assert_equal false, @appender.closed?
52
-
53
- @appender.close
54
- assert_equal true, @appender.closed?
55
- end
56
-
57
- def test_concat
58
- ary = []
59
- @appender.instance_variable_set :@ary, ary
60
- def @appender.write( event )
61
- str = event.instance_of?(::Logging::LogEvent) ?
62
- @layout.format(event) : event.to_s
63
- @ary << str
64
- end
65
-
66
- assert_nothing_raised {@appender << 'log message'}
67
- assert_equal 'log message', ary.pop
68
-
69
- @appender.level = :off
70
- @appender << 'another log message'
71
- assert_nil ary.pop
72
-
73
- layout = @appender.layout
74
- def layout.footer() 'this is the footer' end
75
-
76
- @appender.close
77
- assert_raise(RuntimeError) {@appender << 'log message'}
78
- assert_equal 'this is the footer', ary.pop
79
- end
80
-
81
- def test_flush
82
- assert_same @appender, @appender.flush
83
- end
84
-
85
- def test_initialize
86
- assert_raise(TypeError) {::Logging::Appender.new 'test', :layout => []}
87
-
88
- layout = ::Logging::Layouts::Basic.new
89
- @appender = ::Logging::Appender.new 'test', :layout => layout
90
- assert_same layout, @appender.instance_variable_get(:@layout)
91
- end
92
-
93
- def test_layout
94
- assert_instance_of ::Logging::Layouts::Basic, @appender.layout
95
- end
96
-
97
- def test_layout_eq
98
- layout = ::Logging::Layouts::Basic.new
99
- assert_not_equal layout, @appender.layout
100
-
101
- assert_raise(TypeError) {@appender.layout = Object.new}
102
- assert_raise(TypeError) {@appender.layout = 'not a layout'}
103
-
104
- @appender.layout = layout
105
- assert_same layout, @appender.layout
106
- end
107
-
108
- def test_level
109
- assert_equal 0, @appender.level
110
- end
111
-
112
- def test_level_eq
113
- assert_equal 0, @appender.level
114
-
115
- assert_raise(ArgumentError) {@appender.level = -1}
116
- assert_raise(ArgumentError) {@appender.level = 6}
117
- assert_raise(ArgumentError) {@appender.level = Object}
118
- assert_raise(ArgumentError) {@appender.level = 'bob'}
119
- assert_raise(ArgumentError) {@appender.level = :wtf}
120
-
121
- @appender.level = 'INFO'
122
- assert_equal 1, @appender.level
123
-
124
- @appender.level = :warn
125
- assert_equal 2, @appender.level
126
-
127
- @appender.level = 'error'
128
- assert_equal 3, @appender.level
129
-
130
- @appender.level = 4
131
- assert_equal 4, @appender.level
132
-
133
- @appender.level = 'off'
134
- assert_equal 5, @appender.level
135
-
136
- @appender.level = :all
137
- assert_equal 0, @appender.level
138
- end
139
-
140
- def test_name
141
- assert_equal 'test_appender', @appender.name
142
- end
143
-
144
- def test_inspect
145
- expected = "<Appender:0x%x name=\"test_appender\">" % @appender.object_id
146
- assert_equal expected, @appender.inspect
147
- end
148
-
149
- end # class TestAppender
150
- end # module TestLogging
151
-
152
- # EOF