redcar 0.3.1dev → 0.3.2dev

Sign up to get free protection for your applications and to get access to all the features.
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,60 +0,0 @@
1
-
2
- module Logging::Appenders
3
-
4
- # This class provides an Appender that can write to STDOUT.
5
- #
6
- class Stdout < ::Logging::Appenders::IO
7
-
8
- # call-seq:
9
- # Stdout.new( name = 'stdout' )
10
- # Stdout.new( :layout => layout )
11
- # Stdout.new( name = 'stdout', :level => 'info' )
12
- #
13
- # Creates a new Stdout Appender. The name 'stdout' will be used unless
14
- # another is given. Optionally, a layout can be given for the appender
15
- # to use (otherwise a basic appender will be created) and a log level
16
- # can be specified.
17
- #
18
- # Options:
19
- #
20
- # :layout => the layout to use when formatting log events
21
- # :level => the level at which to log
22
- #
23
- def initialize( *args )
24
- opts = Hash === args.last ? args.pop : {}
25
- name = args.empty? ? 'stdout' : args.shift
26
-
27
- super(name, STDOUT, opts)
28
- end
29
- end # class Stdout
30
-
31
- # This class provides an Appender that can write to STDERR.
32
- #
33
- class Stderr < ::Logging::Appenders::IO
34
-
35
- # call-seq:
36
- # Stderr.new( name = 'stderr' )
37
- # Stderr.new( :layout => layout )
38
- # Stderr.new( name = 'stderr', :level => 'warn' )
39
- #
40
- # Creates a new Stderr Appender. The name 'stderr' will be used unless
41
- # another is given. Optionally, a layout can be given for the appender
42
- # to use (otherwise a basic appender will be created) and a log level
43
- # can be specified.
44
- #
45
- # Options:
46
- #
47
- # :layout => the layout to use when formatting log events
48
- # :level => the level at which to log
49
- #
50
- def initialize( *args )
51
- opts = Hash === args.last ? args.pop : {}
52
- name = args.empty? ? 'stderr' : args.shift
53
-
54
- super(name, STDERR, opts)
55
- end
56
- end # class Stderr
57
-
58
- end # module Logging::Appenders
59
-
60
- # EOF
@@ -1,75 +0,0 @@
1
- #
2
- # require 'net/smtp'
3
- # require 'time' # get rfc822 time format
4
- #
5
- # # a replacement EmailOutputter. This is essentially the default EmailOutptter from Log4r but with the following
6
- # # changes:
7
- # # 1) if there is data to send in an email, then do not send anything
8
- # # 2) connect to the smtp server at the last minute, do not connect at startup and then send later on.
9
- # # 3) Fix the To: field so that it looks alright.
10
- # module Logging::Appenders
11
- #
12
- # class Email < ::Logging::Appender
13
- # include Buffering
14
- #
15
- # attr_reader :server, :port, :domain, :acct, :authtype, :subject
16
- #
17
- # # TODO: make the from/to fields modifiable
18
- # # possibly the subject, too
19
- #
20
- # def initialize( name, opts = {} )
21
- # super(name, opts)
22
- #
23
- # af = opts.getopt(:buffsize) ||
24
- # opts.getopt(:buffer_size) ||
25
- # 100
26
- # configure_buffering({:auto_flushing => af}.merge(opts))
27
- #
28
- # # get the SMTP parameters
29
- # @from = opts.getopt(:from)
30
- # raise ArgumentError, 'Must specify from address' if @from.nil?
31
- #
32
- # @to = opts.getopt(:to, '').split(',')
33
- # raise ArgumentError, 'Must specify recipients' if @to.empty?
34
- #
35
- # @server = opts.getopt :server, 'localhost'
36
- # @port = opts.getopt :port, 25, :as => Integer
37
- # @domain = opts.getopt(:domain, ENV['HOSTNAME']) || 'localhost.localdomain'
38
- # @acct = opts.getopt :acct
39
- # @passwd = opts.getopt :passwd
40
- # @authtype = opts.getopt :authtype, :cram_md5, :as => Symbol
41
- # @subject = opts.getopt :subject, "Message of #{$0}"
42
- # @params = [@server, @port, @domain, @acct, @passwd, @authtype]
43
- # end
44
- #
45
- # # call-seq:
46
- # # flush
47
- # #
48
- # # Create and send an email containing the current message buffer.
49
- # #
50
- # def flush
51
- # return self if buffer.empty?
52
- #
53
- # ### build a mail header for RFC 822
54
- # rfc822msg = "From: #{@from}\n"
55
- # rfc822msg << "To: #{@to.join(",")}\n"
56
- # rfc822msg << "Subject: #{@subject}\n"
57
- # rfc822msg << "Date: #{Time.new.rfc822}\n"
58
- # rfc822msg << "Message-Id: <#{"%.8f" % Time.now.to_f}@#{@domain}>\n\n"
59
- # rfc822msg << buffer.join
60
- #
61
- # ### send email
62
- # Net::SMTP.start(*@params) {|smtp| smtp.sendmail(rfc822msg, @from, @to)}
63
- # self
64
- # rescue StandardError, TimeoutError => err
65
- # self.level = :off
66
- # ::Logging.log_internal {'e-mail notifications have been disabled'}
67
- # ::Logging.log_internal(-2) {err}
68
- # ensure
69
- # buffer.clear
70
- # end
71
- #
72
- # end # class Email
73
- # end # module Logging::Appenders
74
- #
75
- # # EOF
@@ -1,58 +0,0 @@
1
-
2
- module Logging::Appenders
3
-
4
- # This class provides an Appender that can write to a File.
5
- #
6
- class File < ::Logging::Appenders::IO
7
-
8
- # call-seq:
9
- # File.assert_valid_logfile( filename ) => true
10
- #
11
- # Asserts that the given _filename_ can be used as a log file by ensuring
12
- # that if the file exists it is a regular file and it is writable. If
13
- # the file does not exist, then the directory is checked to see if it is
14
- # writable.
15
- #
16
- # An +ArgumentError+ is raised if any of these assertions fail.
17
- #
18
- def self.assert_valid_logfile( fn )
19
- if ::File.exist?(fn)
20
- if not ::File.file?(fn)
21
- raise ArgumentError, "#{fn} is not a regular file"
22
- elsif not ::File.writable?(fn)
23
- raise ArgumentError, "#{fn} is not writeable"
24
- end
25
- elsif not ::File.writable?(::File.dirname(fn))
26
- raise ArgumentError, "#{::File.dirname(fn)} is not writable"
27
- end
28
- true
29
- end
30
-
31
- # call-seq:
32
- # File.new( name, :filename => 'file' )
33
- # File.new( name, :filename => 'file', :truncate => true )
34
- # File.new( name, :filename => 'file', :layout => layout )
35
- #
36
- # Creates a new File Appender that will use the given filename as the
37
- # logging destination. If the file does not already exist it will be
38
- # created. If the :truncate option is set to +true+ then the file will
39
- # be truncated before writing begins; otherwise, log messages will be
40
- # appened to the file.
41
- #
42
- def initialize( name, opts = {} )
43
- @fn = opts.getopt(:filename, name)
44
- raise ArgumentError, 'no filename was given' if @fn.nil?
45
- self.class.assert_valid_logfile(@fn)
46
- mode = opts.getopt(:truncate) ? 'w' : 'a'
47
-
48
- super(name, ::File.new(@fn, mode), opts)
49
- end
50
-
51
- # Returns the path to the logfile.
52
- #
53
- def filename() @fn.dup end
54
-
55
- end # class FileAppender
56
- end # module Logging::Appenders
57
-
58
- # EOF
@@ -1,197 +0,0 @@
1
-
2
- module Logging::Appenders
3
-
4
- # This class provides an Appender that can send notifications to the Growl
5
- # notification system on Mac OS X.
6
- #
7
- # +growlnotify+ must be installed somewhere in the path in order for the
8
- # appender to function properly.
9
- #
10
- class Growl < ::Logging::Appender
11
-
12
- # :stopdoc:
13
- ColoredRegexp = %r/\e\[([34][0-7]|[0-9])m/
14
- # :startdoc:
15
-
16
- # call-seq:
17
- # Growl.new( name, opts = {} )
18
- #
19
- # Create an appender that will log messages to the Growl framework on a
20
- # Mac OS X machine.
21
- #
22
- def initialize( name, opts = {} )
23
- super
24
-
25
- @growl = "growlnotify -w -n \"#{@name}\" -t \"%s\" -m \"%s\" -p %d &"
26
-
27
- @coalesce = opts.getopt(:coalesce, false)
28
- @title_sep = opts.getopt(:separator)
29
-
30
- # provides a mapping from the default Logging levels
31
- # to the Growl notification levels
32
- @map = [-2, -1, 0, 1, 2]
33
-
34
- map = opts.getopt(:map)
35
- self.map = map unless map.nil?
36
- setup_coalescing if @coalesce
37
-
38
- # make sure the growlnotify command can be called
39
- unless system('growlnotify -v >> /dev/null 2>&1')
40
- self.level = :off
41
- ::Logging.log_internal {'growl notifications have been disabled'}
42
- end
43
- end
44
-
45
- # call-seq:
46
- # map = { logging_levels => growl_levels }
47
- #
48
- # Configure the mapping from the Logging levels to the Growl
49
- # notification levels. This is needed in order to log events at the
50
- # proper Growl level.
51
- #
52
- # Without any configuration, the following maping will be used:
53
- #
54
- # :debug => -2
55
- # :info => -1
56
- # :warn => 0
57
- # :error => 1
58
- # :fatal => 2
59
- #
60
- def map=( levels )
61
- map = []
62
- levels.keys.each do |lvl|
63
- num = ::Logging.level_num(lvl)
64
- map[num] = growl_level_num(levels[lvl])
65
- end
66
- @map = map
67
- end
68
-
69
-
70
- private
71
-
72
- # call-seq:
73
- # write( event )
74
- #
75
- # Write the given _event_ to the growl notification facility. The log
76
- # event will be processed through the Layout assciated with this
77
- # appender. The message will be logged at the level specified by the
78
- # event.
79
- #
80
- def write( event )
81
- title = ''
82
- priority = 0
83
- message = if event.instance_of?(::Logging::LogEvent)
84
- priority = @map[event.level]
85
- @layout.format(event)
86
- else
87
- event.to_s
88
- end
89
- return if message.empty?
90
-
91
- message = message.gsub(ColoredRegexp, '')
92
- if @title_sep
93
- title, message = message.split(@title_sep)
94
- title, message = '', title if message.nil?
95
- end
96
-
97
- growl(title.strip, message.strip, priority)
98
- self
99
- end
100
-
101
- # call-seq:
102
- # growl_level_num( level ) => integer
103
- #
104
- # Takes the given _level_ as a string or integer and returns the
105
- # corresponding Growl notification level number.
106
- #
107
- def growl_level_num( level )
108
- level = Integer(level)
109
- if level < -2 or level > 2
110
- raise ArgumentError, "level '#{level}' is not in range -2..2"
111
- end
112
- level
113
- end
114
-
115
- # call-seq:
116
- # growl( title, message, priority )
117
- #
118
- # Send the _message_ to the growl notifier using the given _title_ and
119
- # _priority_.
120
- #
121
- def growl( title, message, priority )
122
- message.tr!("`", "'")
123
- if @coalesce then coalesce(title, message, priority)
124
- else call_growl(title, message, priority) end
125
- end
126
-
127
- # call-seq:
128
- # coalesce( title, message, priority )
129
- #
130
- # Attempt to coalesce the given _message_ with any that might be pending
131
- # in the queue to send to the growl notifier. Messages are coalesced
132
- # with any in the queue that have the same _title_ and _priority_.
133
- #
134
- # There can be only one message in the queue, so if the _title_ and/or
135
- # _priority_ don't match, the message in the queue is sent immediately
136
- # to the growl notifier, and the current _message_ is queued.
137
- #
138
- def coalesce( *msg )
139
- @c_mutex.synchronize do
140
- if @c_queue.empty?
141
- @c_queue << msg
142
- @c_thread.run
143
-
144
- else
145
- qmsg = @c_queue.last
146
- if qmsg.first != msg.first or qmsg.last != msg.last
147
- @c_queue << msg
148
- else
149
- qmsg[1] << "\n" << msg[1]
150
- end
151
- end
152
- end
153
-
154
- Thread.pass
155
- end
156
-
157
- # call-seq:
158
- # setup_coalescing
159
- #
160
- # Setup the appender to handle coalescing of messages before sending
161
- # them to the growl notifier. This requires the creation of a thread and
162
- # mutex for passing messages from the appender thread to the growl
163
- # notifier thread.
164
- #
165
- def setup_coalescing
166
- @c_mutex = Mutex.new
167
- @c_queue = []
168
-
169
- @c_thread = Thread.new do
170
- Thread.stop
171
- loop do
172
- sleep 0.5
173
- @c_mutex.synchronize {
174
- call_growl(*@c_queue.shift) until @c_queue.empty?
175
- }
176
- Thread.stop if @c_queue.empty?
177
- end # loop
178
- end # Thread.new
179
- end
180
-
181
- # call-seq:
182
- # call_growl( title, message, priority )
183
- #
184
- # Call the growlnotify application with the given parameters. If the
185
- # system call fails, the growl appender will be disabled.
186
- #
187
- def call_growl( *args )
188
- unless system(@growl % args)
189
- self.level = :off
190
- ::Logging.log_internal {'growl notifications have been disabled'}
191
- end
192
- end
193
-
194
- end # class Growl
195
- end # module Logging::Appenders
196
-
197
- # EOF
@@ -1,69 +0,0 @@
1
-
2
- module Logging::Appenders
3
-
4
- # This class provides an Appender that can write to any IO stream
5
- # configured for writing.
6
- #
7
- class IO < ::Logging::Appender
8
- include Buffering
9
-
10
- # call-seq:
11
- # IO.new( name, io )
12
- # IO.new( name, io, :layout => layout )
13
- #
14
- # Creates a new IO Appender using the given name that will use the _io_
15
- # stream as the logging destination.
16
- #
17
- def initialize( name, io, opts = {} )
18
- unless io.respond_to? :write
19
- raise TypeError, "expecting an IO object but got '#{io.class.name}'"
20
- end
21
-
22
- @io = io
23
- @io.sync = true if @io.respond_to?(:sync) rescue nil
24
-
25
- configure_buffering(opts)
26
- super(name, opts)
27
- end
28
-
29
- # call-seq:
30
- # close( footer = true )
31
- #
32
- # Close the appender and writes the layout footer to the logging
33
- # destination if the _footer_ flag is set to +true+. Log events will
34
- # no longer be written to the logging destination after the appender
35
- # is closed.
36
- #
37
- def close( *args )
38
- return self if @io.nil?
39
- super
40
- io, @io = @io, nil
41
- io.close unless [STDIN, STDERR, STDOUT].include?(io)
42
- rescue IOError => err
43
- ensure
44
- return self
45
- end
46
-
47
- # call-seq:
48
- # flush
49
- #
50
- # Call +flush+ to force an appender to write out any buffered log events.
51
- # Similar to IO#flush, so use in a similar fashion.
52
- #
53
- def flush
54
- return self if @io.nil?
55
- @io.write(buffer.join) unless buffer.empty?
56
- @io.flush
57
- self
58
- rescue StandardError => err
59
- self.level = :off
60
- ::Logging.log_internal {"appender #{name.inspect} has been disabled"}
61
- ::Logging.log_internal(-2) {err}
62
- ensure
63
- buffer.clear
64
- end
65
-
66
- end # class IO
67
- end # module Logging::Appenders
68
-
69
- # EOF