redcar 0.3.4.3 → 0.3.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (196) hide show
  1. data/CHANGES +45 -0
  2. data/README.md +2 -1
  3. data/ROADMAP.md +0 -1
  4. data/Rakefile +10 -4
  5. data/bin/redcar +2 -2
  6. data/lib/openssl/build.properties +7 -0
  7. data/lib/plugin_manager/lib/plugin_manager.rb +10 -0
  8. data/lib/plugin_manager/lib/plugin_manager/plugin_definition.rb +1 -13
  9. data/lib/redcar.rb +12 -8
  10. data/lib/redcar/installer.rb +16 -15
  11. data/lib/redcar/ruby_extensions.rb +146 -1
  12. data/lib/redcar/runner.rb +16 -7
  13. data/lib/redcar/usage.rb +4 -7
  14. data/lib/redcar_quick_start.rb +5 -5
  15. data/lib/regex_replace.rb +0 -7
  16. data/plugins/application/features/step_definitions/command_steps.rb +5 -0
  17. data/plugins/application/features/step_definitions/dialog_steps.rb +5 -0
  18. data/plugins/application/features/step_definitions/filter_list_dialog_steps.rb +38 -0
  19. data/plugins/application/features/step_definitions/window_steps.rb +1 -1
  20. data/plugins/application/features/support/env.rb +44 -8
  21. data/plugins/application/lib/application.rb +32 -33
  22. data/plugins/application/lib/application/command.rb +32 -2
  23. data/plugins/application/lib/application/command/executor.rb +2 -12
  24. data/plugins/application/lib/application/dialog.rb +14 -14
  25. data/plugins/application/lib/application/event_spewer.rb +32 -0
  26. data/plugins/application/lib/application/menu.rb +5 -5
  27. data/plugins/application/lib/application/menu/builder.rb +5 -0
  28. data/plugins/application/lib/application/menu/lazy_menu.rb +24 -0
  29. data/plugins/application/lib/application/notebook.rb +4 -3
  30. data/plugins/application/lib/application/tab.rb +6 -2
  31. data/plugins/application/lib/application/window.rb +8 -4
  32. data/plugins/application/spec/application/menu/builder_spec.rb +17 -1
  33. data/plugins/application/spec/application/notebook_spec.rb +1 -1
  34. data/plugins/application_swt/build.xml +74 -0
  35. data/plugins/application_swt/lib/application_swt.rb +79 -0
  36. data/plugins/application_swt/lib/application_swt/cucumber_patches.rb +6 -1
  37. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +25 -17
  38. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +50 -12
  39. data/plugins/application_swt/lib/application_swt/html_tab.rb +20 -0
  40. data/plugins/application_swt/lib/application_swt/menu.rb +26 -2
  41. data/plugins/application_swt/lib/application_swt/notebook.rb +10 -12
  42. data/plugins/application_swt/lib/application_swt/window.rb +11 -11
  43. data/plugins/application_swt/src/com/redcareditor/application_swt/CocoaUIEnhancer.java +313 -0
  44. data/plugins/auto_completer/lib/auto_completer.rb +74 -67
  45. data/plugins/auto_completer/lib/auto_completer/current_document_completion_source.rb +19 -0
  46. data/plugins/auto_completer/lib/auto_completer/document_controller.rb +2 -2
  47. data/plugins/auto_completer/lib/auto_completer/word_list.rb +8 -1
  48. data/plugins/auto_indenter/features/ruby_style_indentation.feature +24 -0
  49. data/plugins/auto_indenter/features/step_definitions/indentation_steps.rb +6 -0
  50. data/plugins/auto_indenter/features/support/env.rb +2 -0
  51. data/plugins/auto_indenter/lib/auto_indenter.rb +86 -0
  52. data/plugins/auto_indenter/lib/auto_indenter/analyzer.rb +91 -0
  53. data/plugins/auto_indenter/lib/auto_indenter/commands.rb +34 -0
  54. data/plugins/auto_indenter/lib/auto_indenter/document_controller.rb +67 -12
  55. data/plugins/auto_indenter/lib/auto_indenter/rules.rb +41 -0
  56. data/plugins/auto_indenter/spec/auto_indenter/analyzer_spec.rb +151 -0
  57. data/plugins/auto_indenter/spec/spec_helper.rb +5 -0
  58. data/plugins/auto_pairer/lib/auto_pairer.rb +1 -0
  59. data/plugins/auto_pairer/lib/auto_pairer/document_controller.rb +43 -42
  60. data/plugins/auto_pairer/lib/auto_pairer/pairs_for_scope.rb +1 -5
  61. data/plugins/core/lib/core.rb +12 -1
  62. data/plugins/core/lib/core/observable.rb +7 -7
  63. data/plugins/core/lib/core/persistent_cache.rb +14 -2
  64. data/plugins/core/lib/core/plugin.rb +7 -0
  65. data/plugins/core/lib/core/resource.rb +78 -0
  66. data/plugins/core/lib/core/task.rb +62 -0
  67. data/plugins/core/lib/core/task_queue.rb +72 -0
  68. data/plugins/core/spec/core/resource_spec.rb +124 -0
  69. data/plugins/core/spec/core/task_queue_spec.rb +202 -0
  70. data/plugins/core/spec/spec_helper.rb +23 -1
  71. data/plugins/declarations/TODO +3 -0
  72. data/plugins/declarations/lib/declarations.rb +144 -0
  73. data/plugins/declarations/lib/declarations/completion_source.rb +22 -0
  74. data/plugins/declarations/lib/declarations/file.rb +68 -0
  75. data/plugins/declarations/lib/declarations/parser.rb +94 -0
  76. data/plugins/declarations/lib/declarations/select_tag_dialog.rb +44 -0
  77. data/plugins/declarations/plugin.rb +7 -0
  78. data/plugins/declarations/spec/declarations/file_spec.rb +62 -0
  79. data/plugins/declarations/spec/fixtures/federalist.rb +15 -0
  80. data/plugins/declarations/spec/spec_helper.rb +4 -0
  81. data/plugins/edit_view/features/indentation_commands.feature +40 -0
  82. data/plugins/edit_view/features/line_delimiter.feature +40 -0
  83. data/plugins/edit_view/features/step_definitions/editing_steps.rb +16 -4
  84. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +1 -1
  85. data/plugins/edit_view/features/step_definitions/tab_steps.rb +1 -1
  86. data/plugins/edit_view/features/step_definitions/window_steps.rb +5 -1
  87. data/plugins/edit_view/features/support/env.rb +3 -5
  88. data/plugins/edit_view/features/undo_and_redo.feature +21 -0
  89. data/plugins/edit_view/lib/edit_view.rb +57 -4
  90. data/plugins/edit_view/lib/edit_view/actions/arrow_keys.rb +19 -3
  91. data/plugins/edit_view/lib/edit_view/document.rb +46 -11
  92. data/plugins/edit_view/lib/edit_view/document/indentation.rb +35 -0
  93. data/plugins/edit_view/lib/edit_view/modified_tabs_checker.rb +35 -0
  94. data/plugins/edit_view/lib/edit_view/tab_settings.rb +13 -3
  95. data/plugins/edit_view/spec/edit_view/document/indentation_spec.rb +112 -0
  96. data/plugins/edit_view/spec/edit_view/document_spec.rb +22 -0
  97. data/plugins/edit_view/spec/spec_helper.rb +1 -0
  98. data/plugins/edit_view_swt/lib/edit_view_swt.rb +59 -7
  99. data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +3 -3
  100. data/plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb +2 -2
  101. data/plugins/edit_view_swt/vendor/java-mateview.rb +3 -2
  102. data/plugins/encryption/encryption.rb +13 -6
  103. data/plugins/execute_current_tab/lib/execute_current_tab.rb +25 -15
  104. data/plugins/html_view/assets/redcar.css +32 -1
  105. data/plugins/html_view/lib/html_view.rb +23 -3
  106. data/plugins/html_view/lib/html_view/html_tab.rb +4 -0
  107. data/plugins/my_plugin/lib/my_plugin.rb +4 -12
  108. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +1 -0
  109. data/plugins/plugin_manager_ui/views/index.html.erb +30 -37
  110. data/plugins/project/features/find_file.feature +75 -0
  111. data/plugins/project/features/open_and_save_files.feature +7 -7
  112. data/plugins/project/features/open_directory_tree.feature +11 -3
  113. data/plugins/project/features/refresh_directory_tree.feature +7 -1
  114. data/plugins/project/features/step_definitions/directory_steps.rb +11 -1
  115. data/plugins/project/features/step_definitions/file_steps.rb +10 -0
  116. data/plugins/project/features/support/env.rb +6 -1
  117. data/plugins/project/features/watch_for_modified_files.feature +79 -0
  118. data/plugins/project/lib/project.rb +72 -306
  119. data/plugins/project/lib/project/commands.rb +128 -0
  120. data/plugins/project/lib/project/dir_mirror.rb +5 -1
  121. data/plugins/project/lib/project/drb_service.rb +21 -31
  122. data/plugins/project/lib/project/file_list.rb +76 -0
  123. data/plugins/project/lib/project/file_mirror.rb +13 -1
  124. data/plugins/project/lib/project/find_file_dialog.rb +22 -52
  125. data/plugins/project/lib/project/manager.rb +210 -0
  126. data/plugins/project/lib/project/recent_directories.rb +16 -3
  127. data/plugins/project/plugin.rb +1 -1
  128. data/plugins/project/spec/fixtures/myproject/README +2 -0
  129. data/plugins/project/spec/fixtures/myproject/lib/foo_lib.rb +1 -0
  130. data/plugins/project/spec/fixtures/myproject/spec/foo_spec.rb +1 -0
  131. data/plugins/project/{features → spec}/fixtures/winter.txt +0 -0
  132. data/plugins/project/spec/project/dir_mirror_spec.rb +1 -12
  133. data/plugins/project/spec/project/file_list_spec.rb +140 -0
  134. data/plugins/project/spec/spec_helper.rb +20 -0
  135. data/plugins/redcar/plugin.rb +1 -0
  136. data/plugins/redcar/redcar.rb +254 -84
  137. data/plugins/redcar_debug/lib/redcar_debug.rb +58 -11
  138. data/plugins/redcar_debug/vendor/jruby-prof/README +46 -0
  139. data/plugins/redcar_debug/vendor/jruby-prof/Rakefile +36 -0
  140. data/plugins/redcar_debug/vendor/jruby-prof/build.xml +31 -0
  141. data/plugins/redcar_debug/vendor/jruby-prof/example/call_tree.html +22677 -0
  142. data/plugins/redcar_debug/vendor/jruby-prof/example/call_tree.txt +589 -0
  143. data/plugins/redcar_debug/vendor/jruby-prof/example/flat.txt +28 -0
  144. data/plugins/redcar_debug/vendor/jruby-prof/example/graph.html +1670 -0
  145. data/plugins/redcar_debug/vendor/jruby-prof/example/graph.txt +125 -0
  146. data/plugins/redcar_debug/vendor/jruby-prof/example/pidigits.rb +92 -0
  147. data/plugins/redcar_debug/vendor/jruby-prof/example/test.rb +28 -0
  148. data/plugins/redcar_debug/vendor/jruby-prof/example/test2.rb +29 -0
  149. data/plugins/redcar_debug/vendor/jruby-prof/example/test_exception.rb +28 -0
  150. data/plugins/redcar_debug/vendor/jruby-prof/example/test_overhead.rb +43 -0
  151. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof.rb +66 -0
  152. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/abstract_printer.rb +21 -0
  153. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/flat_text_printer.rb +35 -0
  154. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/graph_html_printer.rb +123 -0
  155. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/graph_text_printer.rb +45 -0
  156. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/invocation_set.rb +34 -0
  157. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/method.rb +107 -0
  158. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/profile_invocation.rb +43 -0
  159. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/simple_tree_printer.rb +27 -0
  160. data/plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/tree_html_printer.rb +144 -0
  161. data/plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/Invocation.java +14 -0
  162. data/plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/JRubyProf.java +94 -0
  163. data/plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/ProfEventHook.java +49 -0
  164. data/plugins/redcar_debug/vendor/jruby-prof/templates/graph_row.html.erb +18 -0
  165. data/plugins/redcar_debug/vendor/jruby-prof/test/basic_test.rb +291 -0
  166. data/plugins/redcar_debug/views/history.html.erb +33 -0
  167. data/plugins/redcar_debug/views/index.html.erb +33 -0
  168. data/plugins/repl/lib/repl/internal_mirror.rb +3 -15
  169. data/plugins/repl/spec/repl/internal_mirror_spec.rb +2 -2
  170. data/plugins/snippets/lib/snippets.rb +0 -1
  171. data/plugins/snippets/lib/snippets/document_controller.rb +7 -1
  172. data/plugins/task_manager/lib/task_manager.rb +28 -0
  173. data/plugins/task_manager/plugin.rb +11 -0
  174. data/plugins/task_manager/views/index.html.erb +67 -0
  175. data/plugins/textmate/lib/textmate.rb +17 -21
  176. data/plugins/textmate/lib/textmate/plist.rb +1 -2
  177. data/plugins/textmate/lib/textmate/preference.rb +5 -1
  178. data/plugins/textmate/lib/textmate/snippet.rb +6 -1
  179. data/plugins/tree_view_swt/lib/tree_view_swt.rb +0 -6
  180. data/textmate/Bundles/Cucumber.tmbundle/Preferences/Comments.tmPreferences +1 -1
  181. data/textmate/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences +30 -0
  182. data/textmate/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences +19 -0
  183. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/next_Cucumber_Plain_Text_Feature.tmLanguage +221 -0
  184. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/next_Cucumber_Steps.tmLanguage +424 -0
  185. data/textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb +19 -77
  186. data/textmate/Bundles/Cucumber.tmbundle/info.plist +1 -20
  187. data/textmate/Bundles/Perl.tmbundle/Syntaxes/Perl.plist +1 -1
  188. data/textmate/Themes/Emacs Strict.tmTheme +241 -0
  189. data/textmate/Themes/IR_White.tmTheme +792 -0
  190. data/textmate/Themes/Monokai.tmTheme +291 -0
  191. data/textmate/Themes/WhysPoignant.tmTheme +191 -0
  192. metadata +92 -7
  193. data/plugins/application/features/main_window.feature +0 -8
  194. data/plugins/project/lib/project/project_command.rb +0 -5
  195. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario.tmSnippet +0 -22
  196. data/textmate/Bundles/Cucumber.tmbundle/Snippets/Story.tmSnippet +0 -25
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redcar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4.3
4
+ version: 0.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Lucraft
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2010-03-08 00:00:00 +00:00
12
+ date: 2010-05-01 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -67,6 +67,7 @@ files:
67
67
  - README.md
68
68
  - ROADMAP.md
69
69
  - bin/redcar
70
+ - lib/openssl/build.properties
70
71
  - lib/openssl/build.properties.SAMPLE
71
72
  - lib/openssl/build.xml
72
73
  - lib/openssl/History.txt
@@ -496,8 +497,9 @@ files:
496
497
  - lib/redcar_quick_start.rb
497
498
  - lib/regex_replace.rb
498
499
  - plugins/application/features/main_menu.feature
499
- - plugins/application/features/main_window.feature
500
+ - plugins/application/features/step_definitions/command_steps.rb
500
501
  - plugins/application/features/step_definitions/dialog_steps.rb
502
+ - plugins/application/features/step_definitions/filter_list_dialog_steps.rb
501
503
  - plugins/application/features/step_definitions/menu_steps.rb
502
504
  - plugins/application/features/step_definitions/tree_steps.rb
503
505
  - plugins/application/features/step_definitions/window_steps.rb
@@ -513,10 +515,12 @@ files:
513
515
  - plugins/application/lib/application/command.rb
514
516
  - plugins/application/lib/application/dialog.rb
515
517
  - plugins/application/lib/application/dialogs/filter_list_dialog.rb
518
+ - plugins/application/lib/application/event_spewer.rb
516
519
  - plugins/application/lib/application/keymap/builder.rb
517
520
  - plugins/application/lib/application/keymap.rb
518
521
  - plugins/application/lib/application/menu/builder.rb
519
522
  - plugins/application/lib/application/menu/item.rb
523
+ - plugins/application/lib/application/menu/lazy_menu.rb
520
524
  - plugins/application/lib/application/menu.rb
521
525
  - plugins/application/lib/application/notebook.rb
522
526
  - plugins/application/lib/application/sensitive.rb
@@ -546,6 +550,7 @@ files:
546
550
  - plugins/application/spec/application/treebook_spec.rb
547
551
  - plugins/application/spec/application/window_spec.rb
548
552
  - plugins/application/spec/spec_helper.rb
553
+ - plugins/application_swt/build.xml
549
554
  - plugins/application_swt/lib/application_swt/bring_to_front.rb
550
555
  - plugins/application_swt/lib/application_swt/clipboard.rb
551
556
  - plugins/application_swt/lib/application_swt/cucumber_patches.rb
@@ -571,6 +576,7 @@ files:
571
576
  - plugins/application_swt/spec/application_swt/menu/binding_translator_spec.rb
572
577
  - plugins/application_swt/spec/application_swt/menu_spec.rb
573
578
  - plugins/application_swt/spec/spec_helper.rb
579
+ - plugins/application_swt/src/com/redcareditor/application_swt/CocoaUIEnhancer.java
574
580
  - plugins/application_swt/vendor/swt/linux/dummy
575
581
  - plugins/application_swt/vendor/swt/osx/dummy
576
582
  - plugins/application_swt/vendor/swt/osx64/dummy
@@ -578,14 +584,23 @@ files:
578
584
  - plugins/auto_completer/features/auto_complete.feature
579
585
  - plugins/auto_completer/features/step_definitions/auto_complete_steps.rb
580
586
  - plugins/auto_completer/features/support/env.rb
587
+ - plugins/auto_completer/lib/auto_completer/current_document_completion_source.rb
581
588
  - plugins/auto_completer/lib/auto_completer/document_controller.rb
582
589
  - plugins/auto_completer/lib/auto_completer/word_iterator.rb
583
590
  - plugins/auto_completer/lib/auto_completer/word_list.rb
584
591
  - plugins/auto_completer/lib/auto_completer.rb
585
592
  - plugins/auto_completer/plugin.rb
593
+ - plugins/auto_indenter/features/ruby_style_indentation.feature
594
+ - plugins/auto_indenter/features/step_definitions/indentation_steps.rb
595
+ - plugins/auto_indenter/features/support/env.rb
596
+ - plugins/auto_indenter/lib/auto_indenter/analyzer.rb
597
+ - plugins/auto_indenter/lib/auto_indenter/commands.rb
586
598
  - plugins/auto_indenter/lib/auto_indenter/document_controller.rb
599
+ - plugins/auto_indenter/lib/auto_indenter/rules.rb
587
600
  - plugins/auto_indenter/lib/auto_indenter.rb
588
601
  - plugins/auto_indenter/plugin.rb
602
+ - plugins/auto_indenter/spec/auto_indenter/analyzer_spec.rb
603
+ - plugins/auto_indenter/spec/spec_helper.rb
589
604
  - plugins/auto_pairer/features/auto_pairer.feature
590
605
  - plugins/auto_pairer/features/step_definitions/auto_pairer_steps.rb
591
606
  - plugins/auto_pairer/features/support/env.rb
@@ -604,14 +619,31 @@ files:
604
619
  - plugins/core/lib/core/plugin/storage.rb
605
620
  - plugins/core/lib/core/plugin.rb
606
621
  - plugins/core/lib/core/reentry_helpers.rb
622
+ - plugins/core/lib/core/resource.rb
623
+ - plugins/core/lib/core/task.rb
624
+ - plugins/core/lib/core/task_queue.rb
607
625
  - plugins/core/lib/core.rb
608
626
  - plugins/core/plugin.rb
609
627
  - plugins/core/spec/core/gui_spec.rb
610
628
  - plugins/core/spec/core/observable_spec.rb
611
629
  - plugins/core/spec/core/persistent_cache_spec.rb
630
+ - plugins/core/spec/core/resource_spec.rb
612
631
  - plugins/core/spec/core/storage_spec.rb
632
+ - plugins/core/spec/core/task_queue_spec.rb
613
633
  - plugins/core/spec/spec_helper.rb
634
+ - plugins/declarations/lib/declarations/completion_source.rb
635
+ - plugins/declarations/lib/declarations/file.rb
636
+ - plugins/declarations/lib/declarations/parser.rb
637
+ - plugins/declarations/lib/declarations/select_tag_dialog.rb
638
+ - plugins/declarations/lib/declarations.rb
639
+ - plugins/declarations/plugin.rb
640
+ - plugins/declarations/spec/declarations/file_spec.rb
641
+ - plugins/declarations/spec/fixtures/federalist.rb
642
+ - plugins/declarations/spec/spec_helper.rb
643
+ - plugins/declarations/TODO
614
644
  - plugins/edit_view/features/cut_and_paste.feature
645
+ - plugins/edit_view/features/indentation_commands.feature
646
+ - plugins/edit_view/features/line_delimiter.feature
615
647
  - plugins/edit_view/features/multiple_notebooks.feature
616
648
  - plugins/edit_view/features/multiple_windows.feature
617
649
  - plugins/edit_view/features/new_tab.feature
@@ -632,13 +664,16 @@ files:
632
664
  - plugins/edit_view/lib/edit_view/command.rb
633
665
  - plugins/edit_view/lib/edit_view/document/command.rb
634
666
  - plugins/edit_view/lib/edit_view/document/controller.rb
667
+ - plugins/edit_view/lib/edit_view/document/indentation.rb
635
668
  - plugins/edit_view/lib/edit_view/document/mirror.rb
636
669
  - plugins/edit_view/lib/edit_view/document.rb
637
670
  - plugins/edit_view/lib/edit_view/edit_tab.rb
638
671
  - plugins/edit_view/lib/edit_view/info_speedbar.rb
672
+ - plugins/edit_view/lib/edit_view/modified_tabs_checker.rb
639
673
  - plugins/edit_view/lib/edit_view/tab_settings.rb
640
674
  - plugins/edit_view/lib/edit_view.rb
641
675
  - plugins/edit_view/plugin.rb
676
+ - plugins/edit_view/spec/edit_view/document/indentation_spec.rb
642
677
  - plugins/edit_view/spec/edit_view/document_spec.rb
643
678
  - plugins/edit_view/spec/spec_helper.rb
644
679
  - plugins/edit_view_swt/lib/edit_view_swt/document.rb
@@ -677,23 +712,31 @@ files:
677
712
  - plugins/plugin_manager_ui/lib/plugin_manager_ui.rb
678
713
  - plugins/plugin_manager_ui/plugin.rb
679
714
  - plugins/plugin_manager_ui/views/index.html.erb
680
- - plugins/project/features/fixtures/winter.txt
715
+ - plugins/project/features/find_file.feature
681
716
  - plugins/project/features/open_and_save_files.feature
682
717
  - plugins/project/features/open_directory_tree.feature
683
718
  - plugins/project/features/refresh_directory_tree.feature
684
719
  - plugins/project/features/step_definitions/directory_steps.rb
685
720
  - plugins/project/features/step_definitions/file_steps.rb
686
721
  - plugins/project/features/support/env.rb
722
+ - plugins/project/features/watch_for_modified_files.feature
723
+ - plugins/project/lib/project/commands.rb
687
724
  - plugins/project/lib/project/dir_controller.rb
688
725
  - plugins/project/lib/project/dir_mirror.rb
689
726
  - plugins/project/lib/project/drb_service.rb
727
+ - plugins/project/lib/project/file_list.rb
690
728
  - plugins/project/lib/project/file_mirror.rb
691
729
  - plugins/project/lib/project/find_file_dialog.rb
692
- - plugins/project/lib/project/project_command.rb
730
+ - plugins/project/lib/project/manager.rb
693
731
  - plugins/project/lib/project/recent_directories.rb
694
732
  - plugins/project/lib/project.rb
695
733
  - plugins/project/plugin.rb
734
+ - plugins/project/spec/fixtures/myproject/lib/foo_lib.rb
735
+ - plugins/project/spec/fixtures/myproject/README
736
+ - plugins/project/spec/fixtures/myproject/spec/foo_spec.rb
737
+ - plugins/project/spec/fixtures/winter.txt
696
738
  - plugins/project/spec/project/dir_mirror_spec.rb
739
+ - plugins/project/spec/project/file_list_spec.rb
697
740
  - plugins/project/spec/project/file_mirror_spec.rb
698
741
  - plugins/project/spec/spec_helper.rb
699
742
  - plugins/redcar/plugin.rb
@@ -702,6 +745,36 @@ files:
702
745
  - plugins/redcar/spec/spec_helper.rb
703
746
  - plugins/redcar_debug/lib/redcar_debug.rb
704
747
  - plugins/redcar_debug/plugin.rb
748
+ - plugins/redcar_debug/vendor/jruby-prof/build.xml
749
+ - plugins/redcar_debug/vendor/jruby-prof/example/call_tree.html
750
+ - plugins/redcar_debug/vendor/jruby-prof/example/call_tree.txt
751
+ - plugins/redcar_debug/vendor/jruby-prof/example/flat.txt
752
+ - plugins/redcar_debug/vendor/jruby-prof/example/graph.html
753
+ - plugins/redcar_debug/vendor/jruby-prof/example/graph.txt
754
+ - plugins/redcar_debug/vendor/jruby-prof/example/pidigits.rb
755
+ - plugins/redcar_debug/vendor/jruby-prof/example/test.rb
756
+ - plugins/redcar_debug/vendor/jruby-prof/example/test2.rb
757
+ - plugins/redcar_debug/vendor/jruby-prof/example/test_exception.rb
758
+ - plugins/redcar_debug/vendor/jruby-prof/example/test_overhead.rb
759
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/abstract_printer.rb
760
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/flat_text_printer.rb
761
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/graph_html_printer.rb
762
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/graph_text_printer.rb
763
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/invocation_set.rb
764
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/method.rb
765
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/profile_invocation.rb
766
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/simple_tree_printer.rb
767
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof/tree_html_printer.rb
768
+ - plugins/redcar_debug/vendor/jruby-prof/lib/jruby-prof.rb
769
+ - plugins/redcar_debug/vendor/jruby-prof/Rakefile
770
+ - plugins/redcar_debug/vendor/jruby-prof/README
771
+ - plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/Invocation.java
772
+ - plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/JRubyProf.java
773
+ - plugins/redcar_debug/vendor/jruby-prof/src/org/jruby/prof/ProfEventHook.java
774
+ - plugins/redcar_debug/vendor/jruby-prof/templates/graph_row.html.erb
775
+ - plugins/redcar_debug/vendor/jruby-prof/test/basic_test.rb
776
+ - plugins/redcar_debug/views/history.html.erb
777
+ - plugins/redcar_debug/views/index.html.erb
705
778
  - plugins/repl/lib/repl/internal_mirror.rb
706
779
  - plugins/repl/lib/repl.rb
707
780
  - plugins/repl/plugin.rb
@@ -716,6 +789,9 @@ files:
716
789
  - plugins/snippets/lib/snippets/tab_handler.rb
717
790
  - plugins/snippets/lib/snippets.rb
718
791
  - plugins/snippets/plugin.rb
792
+ - plugins/task_manager/lib/task_manager.rb
793
+ - plugins/task_manager/plugin.rb
794
+ - plugins/task_manager/views/index.html.erb
719
795
  - plugins/textmate/lib/textmate/bundle.rb
720
796
  - plugins/textmate/lib/textmate/environment.rb
721
797
  - plugins/textmate/lib/textmate/plist.rb
@@ -748,6 +824,8 @@ files:
748
824
  - textmate/Bundles/CSS.tmbundle/Syntaxes/CSS.plist
749
825
  - textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Plain_Text_Feature.tmLanguage
750
826
  - textmate/Bundles/Cucumber.tmbundle/Syntaxes/Cucumber_Steps.tmLanguage
827
+ - textmate/Bundles/Cucumber.tmbundle/Syntaxes/next_Cucumber_Plain_Text_Feature.tmLanguage
828
+ - textmate/Bundles/Cucumber.tmbundle/Syntaxes/next_Cucumber_Steps.tmLanguage
751
829
  - textmate/Bundles/Cucumber.tmbundle/Syntaxes/plaintext_template.erb
752
830
  - textmate/Bundles/D.tmbundle/Syntaxes/D.tmLanguage
753
831
  - textmate/Bundles/Diff.tmbundle/Syntaxes/Diff.plist
@@ -856,6 +934,8 @@ files:
856
934
  - textmate/Bundles/CSS.tmbundle/Preferences/Symbol_List___Group.tmPreferences
857
935
  - textmate/Bundles/Cucumber.tmbundle/Preferences/Comments.tmPreferences
858
936
  - textmate/Bundles/Cucumber.tmbundle/Preferences/Cucumber_Plain_Text_Feature_Completions.tmPreferences
937
+ - textmate/Bundles/Cucumber.tmbundle/Preferences/next_Cucumber_Plain_Text_Feature_Completions.tmPreferences
938
+ - textmate/Bundles/Cucumber.tmbundle/Preferences/next_Symbol_list___Scenario.tmPreferences
859
939
  - textmate/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Scenario.tmPreferences
860
940
  - textmate/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Steps.tmPreferences
861
941
  - textmate/Bundles/Cucumber.tmbundle/Preferences/Symbol_list___Steps_with_String.tmPreferences
@@ -1226,10 +1306,8 @@ files:
1226
1306
  - textmate/Bundles/CSS.tmbundle/Snippets/z__index___index___z__.plist
1227
1307
  - textmate/Bundles/Cucumber.tmbundle/Snippets/Cucumber_Multiline_Steps.tmSnippet
1228
1308
  - textmate/Bundles/Cucumber.tmbundle/Snippets/Given_Step.tmSnippet
1229
- - textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario.tmSnippet
1230
1309
  - textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario___heading_only__.tmSnippet
1231
1310
  - textmate/Bundles/Cucumber.tmbundle/Snippets/Scenario_Outline.tmSnippet
1232
- - textmate/Bundles/Cucumber.tmbundle/Snippets/Story.tmSnippet
1233
1311
  - textmate/Bundles/Cucumber.tmbundle/Snippets/Then_Step.tmSnippet
1234
1312
  - textmate/Bundles/Cucumber.tmbundle/Snippets/Then_Step_Plaintext.tmSnippet
1235
1313
  - textmate/Bundles/Cucumber.tmbundle/Snippets/When_Step.tmSnippet
@@ -2494,12 +2572,15 @@ files:
2494
2572
  - textmate/Themes/Dawn.tmTheme
2495
2573
  - textmate/Themes/Django.tmTheme
2496
2574
  - textmate/Themes/Eiffel.tmTheme
2575
+ - textmate/Themes/Emacs Strict.tmTheme
2497
2576
  - textmate/Themes/Espresso Libre.tmTheme
2498
2577
  - textmate/Themes/IDLE.tmTheme
2499
2578
  - textmate/Themes/iPlastic.tmTheme
2579
+ - textmate/Themes/IR_White.tmTheme
2500
2580
  - textmate/Themes/LAZY.tmTheme
2501
2581
  - textmate/Themes/Mac Classic.tmTheme
2502
2582
  - textmate/Themes/MagicWB (Amiga).tmTheme
2583
+ - textmate/Themes/Monokai.tmTheme
2503
2584
  - textmate/Themes/Pastels on Dark.tmTheme
2504
2585
  - textmate/Themes/Railscasts.tmTheme
2505
2586
  - textmate/Themes/Slush & Poppies.tmTheme
@@ -2507,6 +2588,7 @@ files:
2507
2588
  - textmate/Themes/Sunburst.tmTheme
2508
2589
  - textmate/Themes/Twilight.tmTheme
2509
2590
  - textmate/Themes/Vibrant Ink.tmTheme
2591
+ - textmate/Themes/WhysPoignant.tmTheme
2510
2592
  - textmate/Themes/Zenburnesque.tmTheme
2511
2593
  has_rdoc: true
2512
2594
  homepage: http://redcareditor.com
@@ -2524,6 +2606,9 @@ post_install_message: |+
2524
2606
 
2525
2607
  (If you installed the gem with 'sudo', you will need to run 'sudo redcar install').
2526
2608
 
2609
+ NB. This will download jars that Redcar needs to run from the internet. It will put
2610
+ them only into the Redcar gem directory.
2611
+
2527
2612
  ------------------------------------------------------------------------------------
2528
2613
 
2529
2614
  rdoc_options:
@@ -1,8 +0,0 @@
1
- Feature: Main window
2
-
3
- Scenario: Main window title
4
- Then the window should have title "Redcar"
5
-
6
-
7
-
8
-
@@ -1,5 +0,0 @@
1
- module Redcar
2
- class ProjectCommand < Command
3
- sensitize :open_project
4
- end
5
- end
@@ -1,22 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>content</key>
6
- <string>Scenario: ${1:title}
7
- Given ${2:context}
8
- When ${3:event}
9
- Then ${4:outcome}
10
- $0
11
- $0
12
- </string>
13
- <key>name</key>
14
- <string>Scenario</string>
15
- <key>scope</key>
16
- <string>text.cucumber.feature</string>
17
- <key>tabTrigger</key>
18
- <string>sce</string>
19
- <key>uuid</key>
20
- <string>FEB590E8-C0CB-4DF2-95C9-3E7B56C7758E</string>
21
- </dict>
22
- </plist>
@@ -1,25 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>content</key>
6
- <string>Feature: ${1:`#!/usr/bin/env ruby
7
- title = (ENV['TM_FILENAME'] || 'title').gsub(/\..*$/, '').gsub(/[-_]/, ' ')
8
- puts title[0..0].upcase + title[1..-1].downcase
9
- `}
10
- In order to ${2:value}
11
- As a ${3:role}
12
- I want ${4:feature}
13
-
14
- $0
15
- </string>
16
- <key>name</key>
17
- <string>Feature</string>
18
- <key>scope</key>
19
- <string>text.cucumber.feature</string>
20
- <key>tabTrigger</key>
21
- <string>fea</string>
22
- <key>uuid</key>
23
- <string>E6FBAE52-8B70-47EE-8F22-3A58D4A088F9</string>
24
- </dict>
25
- </plist>