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,501 +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
5
-
6
- require File.expand_path(
7
- File.join(File.dirname(__FILE__), %w[logging utils]))
8
-
9
- require 'yaml'
10
- require 'stringio'
11
- require 'thread'
12
- # require 'little-plugger'
13
-
14
- HAVE_LOCKFILE = false # require? 'lockfile'
15
- HAVE_SYSLOG = false # require? 'syslog'
16
-
17
-
18
- #
19
- #
20
- module Logging
21
- # extend LittlePlugger
22
-
23
- # :stopdoc:
24
- VERSION = '1.2.3'
25
- LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
26
- PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
27
- LEVELS = {}
28
- LNAMES = []
29
- module Plugins; end
30
- # :startdoc:
31
-
32
- class << self
33
-
34
- # call-seq:
35
- # Logging.configure( filename )
36
- # Logging.configure { block }
37
- #
38
- # Configures the Logging framework using the configuration information
39
- # found in the given file. The file extension should be either '.yaml'
40
- # or '.yml' (XML configuration is not yet supported).
41
- #
42
- def configure( *args, &block )
43
- if block
44
- return ::Logging::Config::Configurator.process(&block)
45
- end
46
-
47
- filename = args.shift
48
- raise ArgumentError, 'a filename was not given' if filename.nil?
49
-
50
- case File.extname(filename)
51
- when '.yaml', '.yml'
52
- ::Logging::Config::YamlConfigurator.load(filename, *args)
53
- else raise ArgumentError, 'unknown configuration file format' end
54
- end
55
-
56
- # call-seq:
57
- # Logging.logger( device, age = 7, size = 1048576 )
58
- # Logging.logger( device, age = 'weekly' )
59
- #
60
- # This convenience method returns a Logger instance configured to behave
61
- # similarly to a core Ruby Logger instance.
62
- #
63
- # The _device_ is the logging destination. This can be a filename
64
- # (String) or an IO object (STDERR, STDOUT, an open File, etc.). The
65
- # _age_ is the number of old log files to keep or the frequency of
66
- # rotation (+daily+, +weekly+, or +monthly+). The _size_ is the maximum
67
- # logfile size and is only used when _age_ is a number.
68
- #
69
- # Using the same _device_ twice will result in the same Logger instance
70
- # being returned. For example, if a Logger is created using STDOUT then
71
- # the same Logger instance will be returned the next time STDOUT is
72
- # used. A new Logger instance can be obtained by closing the previous
73
- # logger instance.
74
- #
75
- # log1 = Logging.logger(STDOUT)
76
- # log2 = Logging.logger(STDOUT)
77
- # log1.object_id == log2.object_id #=> true
78
- #
79
- # log1.close
80
- # log2 = Logging.logger(STDOUT)
81
- # log1.object_id == log2.object_id #=> false
82
- #
83
- # The format of the log messages can be changed using a few optional
84
- # parameters. The <tt>:pattern</tt> can be used to change the log
85
- # message format. The <tt>:date_pattern</tt> can be used to change how
86
- # timestamps are formatted.
87
- #
88
- # log = Logging.logger(STDOUT,
89
- # :pattern => "[%d] %-5l : %m\n",
90
- # :date_pattern => "%Y-%m-%d %H:%M:%S.%s")
91
- #
92
- # See the documentation for the Logging::Layouts::Pattern class for a
93
- # full description of the :pattern and :date_pattern formatting strings.
94
- #
95
- def logger( *args )
96
- return ::Logging::Logger if args.empty?
97
-
98
- opts = args.pop if args.last.instance_of?(Hash)
99
- opts ||= Hash.new
100
-
101
- dev = args.shift
102
- keep = age = args.shift
103
- size = args.shift
104
-
105
- name = case dev
106
- when String; dev
107
- when File; dev.path
108
- else dev.object_id.to_s end
109
-
110
- repo = ::Logging::Repository.instance
111
- return repo[name] if repo.has_logger? name
112
-
113
- l_opts = {
114
- :pattern => "%.1l, [%d #%p] %#{::Logging::MAX_LEVEL_LENGTH}l : %m\n",
115
- :date_pattern => '%Y-%m-%dT%H:%M:%S.%s'
116
- }
117
- [:pattern, :date_pattern, :date_method].each do |o|
118
- l_opts[o] = opts.delete(o) if opts.has_key? o
119
- end
120
- layout = ::Logging::Layouts::Pattern.new(l_opts)
121
-
122
- a_opts = Hash.new
123
- a_opts[:size] = size if size.instance_of?(Fixnum)
124
- a_opts[:age] = age if age.instance_of?(String)
125
- a_opts[:keep] = keep if keep.instance_of?(Fixnum)
126
- a_opts[:filename] = dev if dev.instance_of?(String)
127
- a_opts[:layout] = layout
128
- a_opts.merge! opts
129
-
130
- appender =
131
- case dev
132
- when String
133
- ::Logging::Appenders::RollingFile.new(name, a_opts)
134
- else
135
- ::Logging::Appenders::IO.new(name, dev, a_opts)
136
- end
137
-
138
- logger = ::Logging::Logger.new(name)
139
- logger.add_appenders appender
140
- logger.additive = false
141
-
142
- class << logger
143
- def close
144
- @appenders.each {|a| a.close}
145
- h = ::Logging::Repository.instance.instance_variable_get :@h
146
- h.delete(@name)
147
- class << self; undef :close; end
148
- end
149
- end
150
-
151
- logger
152
- end
153
-
154
- # Access to the layouts.
155
- #
156
- def layouts
157
- ::Logging::Layouts
158
- end
159
-
160
- # Access to the appenders.
161
- #
162
- def appenders
163
- ::Logging::Appenders
164
- end
165
-
166
- # call-seq:
167
- # Logging.consolidate( 'First::Name', 'Second::Name', ... )
168
- #
169
- # Consolidate all loggers under the given namespace. All child loggers
170
- # in the namespace will use the "consolidated" namespace logger instead
171
- # of creating a new logger for each class or module.
172
- #
173
- # If the "root" logger name is passed to this method then all loggers
174
- # will consolidate to the root logger. In other words, only the root
175
- # logger will be created, and it will be used by all classes and moduels
176
- # in the applicaiton.
177
- #
178
- # ==== Example
179
- #
180
- # Logging.consolidate( 'Foo' )
181
- #
182
- # foo = Logging.logger['Foo']
183
- # bar = Logging.logger['Foo::Bar']
184
- # baz = Logging.logger['Baz']
185
- #
186
- # foo.object_id == bar.object_id #=> true
187
- # foo.object_id == baz.object_id #=> false
188
- #
189
- def consolidate( *args )
190
- ::Logging::Repository.instance.add_master(*args)
191
- end
192
-
193
- # call-seq:
194
- # include Logging.globally
195
- # include Logging.globally( :logger )
196
- #
197
- # Add a "logger" method to the including context. If included from
198
- # Object or Kernel, the logger method will be available to all objects.
199
- #
200
- # Optionally, a method name can be given and that will be used to
201
- # provided access to the logger:
202
- #
203
- # include Logging.globally( :log )
204
- # log.info "Just using a shorter method name"
205
- #
206
- # If you prefer to use the shorter "log" to access the logger.
207
- #
208
- # ==== Example
209
- #
210
- # include Logging.globally
211
- #
212
- # class Foo
213
- # logger.debug "Loading the Foo class"
214
- # def initialize
215
- # logger.info "Creating some new foo"
216
- # end
217
- # end
218
- #
219
- # logger.fatal "End of example"
220
- #
221
- def globally( name = :logger )
222
- Module.new {
223
- eval "def #{name}() @_logging_logger ||= ::Logging::Logger[self] end"
224
- }
225
- end
226
-
227
- # call-seq:
228
- # Logging.init( levels )
229
- #
230
- # Defines the levels available to the loggers. The _levels_ is an array
231
- # of strings and symbols. Each element in the array is downcased and
232
- # converted to a symbol; these symbols are used to create the logging
233
- # methods in the loggers.
234
- #
235
- # The first element in the array is the lowest logging level. Setting the
236
- # logging level to this value will enable all log messages. The last
237
- # element in the array is the highest logging level. Setting the logging
238
- # level to this value will disable all log messages except this highest
239
- # level.
240
- #
241
- # This method should only be invoked once to configure the logging
242
- # levels. It is automatically invoked with the default logging levels
243
- # when the first logger is created.
244
- #
245
- # The levels "all" and "off" are reserved and will be ignored if passed
246
- # to this method.
247
- #
248
- # Example:
249
- #
250
- # Logging.init :debug, :info, :warn, :error, :fatal
251
- # log = Logging::Logger['my logger']
252
- # log.level = :warn
253
- # log.warn 'Danger! Danger! Will Robinson'
254
- # log.info 'Just FYI' # => not logged
255
- #
256
- # or
257
- #
258
- # Logging.init %w(DEBUG INFO NOTICE WARNING ERR CRIT ALERT EMERG)
259
- # log = Logging::Logger['syslog']
260
- # log.level = :notice
261
- # log.warning 'This is your first warning'
262
- # log.info 'Just FYI' # => not logged
263
- #
264
- def init( *args )
265
- args = %w(debug info warn error fatal) if args.empty?
266
-
267
- args.flatten!
268
- levels = LEVELS.clear
269
- names = LNAMES.clear
270
-
271
- id = 0
272
- args.each do |lvl|
273
- lvl = levelify lvl
274
- unless levels.has_key?(lvl) or lvl == 'all' or lvl == 'off'
275
- levels[lvl] = id
276
- names[id] = lvl.upcase
277
- id += 1
278
- end
279
- end
280
-
281
- longest = names.inject {|x,y| (x.length > y.length) ? x : y}
282
- longest = 'off' if longest.length < 3
283
- module_eval "MAX_LEVEL_LENGTH = #{longest.length}", __FILE__, __LINE__
284
-
285
- # initialize_plugins
286
-
287
- levels.keys
288
- end
289
-
290
- # call-seq:
291
- # Logging.format_as( obj_format )
292
- #
293
- # Defines the default _obj_format_ method to use when converting objects
294
- # into string representations for logging. _obj_format_ can be one of
295
- # <tt>:string</tt>, <tt>:inspect</tt>, or <tt>:yaml</tt>. These
296
- # formatting commands map to the following object methods
297
- #
298
- # * :string => to_s
299
- # * :inspect => inspect
300
- # * :yaml => to_yaml
301
- #
302
- # An +ArgumentError+ is raised if anything other than +:string+,
303
- # +:inspect+, +:yaml+ is passed to this method.
304
- #
305
- def format_as( f )
306
- f = f.intern if f.instance_of? String
307
-
308
- unless [:string, :inspect, :yaml].include? f
309
- raise ArgumentError, "unknown object format '#{f}'"
310
- end
311
-
312
- module_eval "OBJ_FORMAT = :#{f}", __FILE__, __LINE__
313
- end
314
-
315
- # call-seq:
316
- # Logging.backtrace #=> true or false
317
- # Logging.backtrace( value ) #=> true or false
318
- #
319
- # Without any arguments, returns the global exception backtrace logging
320
- # value. When set to +true+ backtraces will be written to the logs; when
321
- # set to +false+ backtraces will be suppressed.
322
- #
323
- # When an argument is given the global exception backtrace setting will
324
- # be changed. Value values are <tt>"on"</tt>, <tt>:on<tt> and +true+ to
325
- # turn on backtraces and <tt>"off"</tt>, <tt>:off</tt> and +false+ to
326
- # turn off backtraces.
327
- #
328
- def backtrace( b = nil )
329
- @backtrace = true unless defined? @backtrace
330
- return @backtrace if b.nil?
331
-
332
- @backtrace = case b
333
- when :on, 'on', true; true
334
- when :off, 'off', false; false
335
- else
336
- raise ArgumentError, "backtrace must be true or false"
337
- end
338
- end
339
-
340
- # Returns the version string for the library.
341
- #
342
- def version
343
- VERSION
344
- end
345
-
346
- # Returns the library path for the module. If any arguments are given,
347
- # they will be joined to the end of the libray path using
348
- # <tt>File.join</tt>.
349
- #
350
- def libpath( *args )
351
- args.empty? ? LIBPATH : ::File.join(LIBPATH, args.flatten)
352
- end
353
-
354
- # Returns the lpath for the module. If any arguments are given,
355
- # they will be joined to the end of the path using
356
- # <tt>File.join</tt>.
357
- #
358
- def path( *args )
359
- args.empty? ? PATH : ::File.join(PATH, args.flatten)
360
- end
361
-
362
- # call-seq:
363
- # show_configuration( io = STDOUT, logger = 'root' )
364
- #
365
- # This method is used to show the configuration of the logging
366
- # framework. The information is written to the given _io_ stream
367
- # (defaulting to stdout). Normally the configuration is dumped starting
368
- # with the root logger, but any logger name can be given.
369
- #
370
- # Each line contains information for a single logger and it's appenders.
371
- # A child logger is indented two spaces from it's parent logger. Each
372
- # line contains the logger name, level, additivity, and trace settings.
373
- # Here is a brief example:
374
- #
375
- # root ........................... *info -T
376
- # LoggerA ...................... info +A -T
377
- # LoggerA::LoggerB ........... info +A -T
378
- # LoggerA::LoggerC ........... *debug +A -T
379
- # LoggerD ...................... *warn -A +T
380
- #
381
- # The lines can be deciphered as follows:
382
- #
383
- # 1) name - the name of the logger
384
- #
385
- # 2) level - the logger level; if it is preceeded by an
386
- # asterisk then the level was explicitly set for that
387
- # logger (as opposed to being inherited from the parent
388
- # logger)
389
- #
390
- # 3) additivity - a "+A" shows the logger is additive, and log events
391
- # will be passed up to the parent logger; "-A" shows
392
- # that the logger will *not* pass log events up to the
393
- # parent logger
394
- #
395
- # 4) trace - a "+T" shows that the logger will include trace
396
- # information in generated log events (this includes
397
- # filename and line number of the log message; "-T"
398
- # shows that the logger does not include trace
399
- # information in the log events)
400
- #
401
- # If a logger has appenders then they are listed, one per line,
402
- # immediately below the logger. Appender lines are pre-pended with a
403
- # single dash:
404
- #
405
- # root ........................... *info -T
406
- # - <Appenders::Stdout:0x8b02a4 name="stdout">
407
- # LoggerA ...................... info +A -T
408
- # LoggerA::LoggerB ........... info +A -T
409
- # LoggerA::LoggerC ........... *debug +A -T
410
- # LoggerD ...................... *warn -A +T
411
- # - <Appenders::Stderr:0x8b04ca name="stderr">
412
- #
413
- # We can see in this configuration dump that all the loggers will append
414
- # to stdout via the Stdout appender configured in the root logger. All
415
- # the loggers are additive, and so their generated log events will be
416
- # passed up to the root logger.
417
- #
418
- # The exception in this configuration is LoggerD. Its additivity is set
419
- # to false. It uses its own appender to send messages to stderr.
420
- #
421
- def show_configuration( io = STDOUT, logger = 'root', indent = 0 )
422
- logger = ::Logging::Logger[logger] unless ::Logging::Logger === logger
423
-
424
- logger._dump_configuration(io, indent)
425
-
426
- indent += 2
427
- children = ::Logging::Repository.instance.children(logger.name)
428
- children.sort {|a,b| a.name <=> b.name}.each do |child|
429
- ::Logging.show_configuration(io, child, indent)
430
- end
431
-
432
- nil
433
- end
434
-
435
- # :stopdoc:
436
- # Convert the given level into a connaconical form - a lowercase string.
437
- def levelify( level )
438
- case level
439
- when String; level.downcase
440
- when Symbol; level.to_s.downcase
441
- else raise ArgumentError, "levels must be a String or Symbol" end
442
- end
443
-
444
- # Convert the given level into a level number.
445
- def level_num( level )
446
- l = levelify level
447
- case l
448
- when 'all'; 0
449
- when 'off'; LEVELS.length
450
- else begin; Integer(l); rescue ArgumentError; LEVELS[l] end end
451
- end
452
-
453
- # Internal logging method for use by the framework.
454
- def log_internal( level = 1, &block )
455
- ::Logging::Logger[::Logging].__send__(levelify(LNAMES[level]), &block)
456
- end
457
-
458
- # Close all appenders
459
- def shutdown
460
- log_internal {'shutdown called - closing all appenders'}
461
- ::Logging::Appenders.each {|appender| appender.close}
462
- end
463
-
464
- # Reset the logging framework to it's uninitialized state
465
- def reset
466
- ::Logging::Repository.reset
467
- ::Logging::Appenders.reset
468
- LEVELS.clear
469
- LNAMES.clear
470
- remove_instance_variable :@backtrace if defined? @backtrace
471
- remove_const :MAX_LEVEL_LENGTH if const_defined? :MAX_LEVEL_LENGTH
472
- remove_const :OBJ_FORMAT if const_defined? :OBJ_FORMAT
473
- end
474
- # :startdoc:
475
- end
476
- end # module Logging
477
-
478
-
479
- require Logging.libpath(%w[logging appender])
480
- require Logging.libpath(%w[logging layout])
481
- require Logging.libpath(%w[logging log_event])
482
- require Logging.libpath(%w[logging logger])
483
- require Logging.libpath(%w[logging repository])
484
- require Logging.libpath(%w[logging root_logger])
485
- require Logging.libpath(%w[logging stats])
486
- require Logging.libpath(%w[logging appenders])
487
- require Logging.libpath(%w[logging layouts])
488
-
489
- require Logging.libpath(%w[logging config configurator])
490
- require Logging.libpath(%w[logging config yaml_configurator])
491
-
492
-
493
- # This exit handler will close all the appenders that exist in the system.
494
- # This is needed for closing IO streams and connections to the syslog server
495
- # or e-mail servers, etc.
496
- #
497
- at_exit {Logging.shutdown}
498
-
499
- end # unless defined?
500
-
501
- # EOF