redcar 0.9.2 → 0.10

Sign up to get free protection for your applications and to get access to all the features.
Files changed (234) hide show
  1. data/CHANGES +34 -4
  2. data/Rakefile +2 -1
  3. data/lib/redcar.rb +3 -3
  4. data/lib/redcar/installer.rb +2 -3
  5. data/plugins/application/features/step_definitions/dialog_steps.rb +7 -0
  6. data/plugins/application/features/step_definitions/key_steps.rb +18 -0
  7. data/plugins/application/features/step_definitions/menu_steps.rb +5 -6
  8. data/plugins/application/features/step_definitions/speedbar_steps.rb +29 -9
  9. data/plugins/application/features/step_definitions/tree_steps.rb +13 -0
  10. data/plugins/application/features/support/env.rb +39 -5
  11. data/plugins/application/features/support/fake_event.rb +12 -0
  12. data/plugins/application/lib/application.rb +5 -6
  13. data/plugins/application/lib/application/dialog.rb +53 -10
  14. data/plugins/application/lib/application/dialogs/modeless_list_dialog.rb +85 -0
  15. data/plugins/application/lib/application/keymap.rb +10 -8
  16. data/plugins/application/lib/application/menu.rb +38 -16
  17. data/plugins/application/lib/application/treebook.rb +30 -0
  18. data/plugins/application/lib/application/window.rb +20 -2
  19. data/plugins/application/spec/application/command/executor_spec.rb +1 -0
  20. data/plugins/application/spec/application/menu_spec.rb +26 -26
  21. data/plugins/application/spec/application/treebook_spec.rb +6 -6
  22. data/plugins/application/spec/spec_helper.rb +10 -1
  23. data/plugins/application_swt/lib/application_swt.rb +25 -3
  24. data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +48 -27
  25. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +22 -11
  26. data/plugins/application_swt/lib/application_swt/dialogs/modeless_dialog.rb +113 -0
  27. data/plugins/application_swt/lib/application_swt/dialogs/modeless_html_dialog.rb +85 -0
  28. data/plugins/application_swt/lib/application_swt/dialogs/modeless_list_dialog_controller.rb +143 -0
  29. data/plugins/application_swt/lib/application_swt/gradient.rb +61 -0
  30. data/plugins/application_swt/lib/application_swt/menu/binding_translator.rb +4 -4
  31. data/plugins/application_swt/lib/application_swt/notebook.rb +5 -8
  32. data/plugins/application_swt/lib/application_swt/speedbar.rb +1 -0
  33. data/plugins/application_swt/lib/application_swt/treebook.rb +6 -8
  34. data/plugins/application_swt/lib/application_swt/window.rb +85 -57
  35. data/plugins/application_swt/lib/swt/graphics_utils.rb +23 -0
  36. data/plugins/application_swt/lib/swt/vtab_folder.rb +7 -0
  37. data/plugins/application_swt/lib/swt/vtab_label.rb +1 -1
  38. data/plugins/application_swt/spec/application_swt/gradient_spec.rb +142 -0
  39. data/plugins/auto_completer/lib/auto_completer.rb +10 -42
  40. data/plugins/auto_completer/lib/auto_completer/list_dialog.rb +21 -0
  41. data/plugins/clojure/lib/clojure.rb +33 -0
  42. data/plugins/{repl/lib/repl/clojure_mirror.rb → clojure/lib/clojure/repl_mirror.rb} +16 -20
  43. data/plugins/clojure/plugin.rb +9 -0
  44. data/plugins/{repl/spec/repl/clojure_mirror_spec.rb → clojure/spec/clojure/repl_mirror_spec.rb} +12 -13
  45. data/plugins/clojure/spec/spec_helper.rb +5 -0
  46. data/plugins/{repl → clojure}/vendor/Wrapper.clj +0 -0
  47. data/plugins/{repl → clojure}/vendor/dummy +0 -0
  48. data/plugins/{repl → clojure}/vendor/enclojure-wrapper.jar +0 -0
  49. data/plugins/connection_manager/lib/connection_manager.rb +13 -13
  50. data/plugins/declarations/lib/declarations.rb +17 -6
  51. data/plugins/document_search/features/find.feature +389 -0
  52. data/plugins/document_search/features/find_and_replace.feature +723 -0
  53. data/plugins/document_search/features/replace.feature +69 -62
  54. data/plugins/document_search/lib/document_search.rb +81 -64
  55. data/plugins/document_search/lib/document_search/commands.rb +258 -0
  56. data/plugins/document_search/lib/document_search/find_and_replace_speedbar.rb +142 -0
  57. data/plugins/document_search/lib/document_search/find_speedbar.rb +102 -0
  58. data/plugins/document_search/lib/document_search/query_options.rb +45 -0
  59. data/plugins/edit_view/features/case_change.feature +9 -5
  60. data/plugins/edit_view/features/step_definitions/editing_steps.rb +19 -0
  61. data/plugins/edit_view/lib/edit_view.rb +15 -12
  62. data/plugins/edit_view/lib/edit_view/actions/arrow_keys.rb +12 -2
  63. data/plugins/edit_view/lib/edit_view/commands/text_conversion_commands.rb +1 -1
  64. data/plugins/edit_view/lib/edit_view/document.rb +129 -99
  65. data/plugins/edit_view_swt/lib/edit_view_swt.rb +33 -15
  66. data/plugins/encryption/encryption.rb +2 -0
  67. data/plugins/find-in-project/lib/find_in_project.rb +3 -5
  68. data/plugins/find-in-project/lib/find_in_project/views/index.html.erb +2 -0
  69. data/plugins/groovy/features/step_definitions/groovy_steps.rb +2 -2
  70. data/plugins/groovy/features/syntax_check_groovy.feature +3 -3
  71. data/plugins/groovy/lib/groovy.rb +38 -0
  72. data/plugins/groovy/lib/groovy/commands.rb +10 -0
  73. data/plugins/{repl/lib/repl/groovy_mirror.rb → groovy/lib/groovy/repl_mirror.rb} +33 -13
  74. data/plugins/groovy/lib/{syntax_check/groovy.rb → groovy/syntax_checker.rb} +13 -8
  75. data/plugins/groovy/plugin.rb +5 -4
  76. data/plugins/{repl/spec/repl/groovy_mirror_spec.rb → groovy/spec/groovy/repl_mirror_spec.rb} +14 -13
  77. data/plugins/groovy/spec/spec_helper.rb +5 -0
  78. data/plugins/html_view/assets/json2.js +476 -0
  79. data/plugins/html_view/lib/html_view.rb +1 -0
  80. data/plugins/java/features/fixtures/test.java +0 -0
  81. data/plugins/java/features/support/env.rb +27 -0
  82. data/plugins/java/features/syntax_check_java.feature +86 -0
  83. data/plugins/java/lib/syntax_check/java.rb +86 -0
  84. data/plugins/java/plugin.rb +7 -0
  85. data/plugins/javascript/features/fixtures/test2.js +5 -0
  86. data/plugins/javascript/features/step_definitions/javascript_steps.rb +16 -0
  87. data/plugins/javascript/features/support/env.rb +14 -0
  88. data/plugins/javascript/features/syntax_check_javascript.feature +46 -3
  89. data/plugins/javascript/lib/syntax_check/javascript.rb +15 -9
  90. data/plugins/line_tools/features/trim_line.feature +49 -0
  91. data/plugins/line_tools/lib/line_tools.rb +5 -1
  92. data/plugins/mirah/README +7 -0
  93. data/plugins/mirah/features/fixtures/test.mirah +2 -0
  94. data/plugins/mirah/features/syntax_check_mirah.feature +46 -0
  95. data/plugins/mirah/lib/mirah.rb +43 -0
  96. data/plugins/mirah/lib/mirah/my_error_handler.rb +22 -0
  97. data/plugins/mirah/lib/mirah/repl_mirror.rb +50 -0
  98. data/plugins/mirah/lib/mirah/syntax_checker.rb +38 -0
  99. data/plugins/mirah/plugin.rb +8 -0
  100. data/plugins/mirah/spec/mirah/repl_mirror_spec.rb +188 -0
  101. data/plugins/mirah/spec/spec_helper.rb +5 -0
  102. data/plugins/mirah/vendor/mirah-parser.jar +0 -0
  103. data/plugins/pair_highlighter/lib/pair_highlighter/document_controller.rb +24 -23
  104. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +10 -1
  105. data/plugins/plugin_manager_ui/views/index.html.erb +2 -0
  106. data/plugins/project/features/find_file.feature +40 -16
  107. data/plugins/project/features/highlight_focussed_tab.feature +16 -10
  108. data/plugins/project/features/step_definitions/find_file_steps.rb +11 -0
  109. data/plugins/project/features/step_definitions/project_tree_steps.rb +5 -1
  110. data/plugins/project/features/support/env.rb +5 -0
  111. data/plugins/project/lib/project/commands.rb +8 -1
  112. data/plugins/project/lib/project/dir_controller.rb +4 -1
  113. data/plugins/project/lib/project/find_file_dialog.rb +16 -12
  114. data/plugins/project/lib/project/manager.rb +30 -1
  115. data/plugins/project_search/vendor/lucene/CHANGELOG +147 -0
  116. data/plugins/project_search/vendor/lucene/CONTRIBUTORS +17 -0
  117. data/plugins/project_search/vendor/lucene/Gemfile +9 -0
  118. data/plugins/project_search/vendor/lucene/Gemfile.lock +33 -0
  119. data/plugins/project_search/vendor/lucene/LICENSE +19 -0
  120. data/plugins/project_search/vendor/lucene/README.rdoc +283 -0
  121. data/plugins/project_search/vendor/lucene/Rakefile +35 -0
  122. data/plugins/project_search/vendor/lucene/examples/active_model/serializers.rb +25 -0
  123. data/plugins/project_search/vendor/lucene/examples/active_model/validation.rb +26 -0
  124. data/plugins/project_search/vendor/lucene/examples/admin/Rakefile +4 -0
  125. data/plugins/project_search/vendor/lucene/examples/admin/admin.rb +29 -0
  126. data/plugins/project_search/vendor/lucene/examples/admin/public/jquery.js +4376 -0
  127. data/plugins/project_search/vendor/lucene/examples/admin/public/neo4j.css +153 -0
  128. data/plugins/project_search/vendor/lucene/examples/admin/public/neo_admin.js +18 -0
  129. data/plugins/project_search/vendor/lucene/examples/admin/spec/admin_spec.rb +26 -0
  130. data/plugins/project_search/vendor/lucene/examples/admin/views/index.erb +21 -0
  131. data/plugins/project_search/vendor/lucene/examples/filetree/README.rdoc +9 -0
  132. data/plugins/project_search/vendor/lucene/examples/filetree/app.rb +7 -0
  133. data/plugins/project_search/vendor/lucene/examples/filetree/batch.props +5 -0
  134. data/plugins/project_search/vendor/lucene/examples/filetree/features/step_definitions/add_steps.rb +121 -0
  135. data/plugins/project_search/vendor/lucene/examples/filetree/features/support/env.rb +30 -0
  136. data/plugins/project_search/vendor/lucene/examples/filetree/features/support/rspec_helper.rb +50 -0
  137. data/plugins/project_search/vendor/lucene/examples/filetree/features/treesizes.feature +19 -0
  138. data/plugins/project_search/vendor/lucene/examples/imdb/1_create_neo_db.rb +66 -0
  139. data/plugins/project_search/vendor/lucene/examples/imdb/2_index_db.rb +23 -0
  140. data/plugins/project_search/vendor/lucene/examples/imdb/README +12 -0
  141. data/plugins/project_search/vendor/lucene/examples/imdb/find_actors.rb +56 -0
  142. data/plugins/project_search/vendor/lucene/examples/imdb/install.sh +12 -0
  143. data/plugins/project_search/vendor/lucene/examples/imdb/model.rb +37 -0
  144. data/plugins/project_search/vendor/lucene/examples/railway/README +111 -0
  145. data/plugins/project_search/vendor/lucene/examples/railway/railnet-app.rb +31 -0
  146. data/plugins/project_search/vendor/lucene/examples/railway/railnet-data.rb +42 -0
  147. data/plugins/project_search/vendor/lucene/examples/rest/example.rb +41 -0
  148. data/plugins/project_search/vendor/lucene/examples/you_might_know/YouMightKnow.java +60 -0
  149. data/plugins/project_search/vendor/lucene/examples/you_might_know/all_simple_paths.rb +34 -0
  150. data/plugins/project_search/vendor/lucene/examples/you_might_know/nodes.rb +34 -0
  151. data/plugins/project_search/vendor/lucene/examples/you_might_know/you_might_know.rb +50 -0
  152. data/plugins/project_search/vendor/lucene/lib/lucene.rb +15 -0
  153. data/plugins/project_search/vendor/lucene/lib/lucene/config.rb +145 -0
  154. data/plugins/project_search/vendor/lucene/lib/lucene/document.rb +96 -0
  155. data/plugins/project_search/vendor/lucene/lib/lucene/field_info.rb +144 -0
  156. data/plugins/project_search/vendor/lucene/lib/lucene/hits.rb +54 -0
  157. data/plugins/project_search/vendor/lucene/lib/lucene/index.rb +267 -0
  158. data/plugins/project_search/vendor/lucene/lib/lucene/index_info.rb +146 -0
  159. data/plugins/project_search/vendor/lucene/lib/lucene/index_searcher.rb +157 -0
  160. data/plugins/project_search/vendor/lucene/lib/lucene/jars.rb +5 -0
  161. data/plugins/project_search/vendor/lucene/lib/lucene/query_dsl.rb +135 -0
  162. data/plugins/project_search/vendor/lucene/lib/lucene/transaction.rb +117 -0
  163. data/plugins/project_search/vendor/lucene/lib/lucene/version.rb +3 -0
  164. data/plugins/project_search/vendor/lucene/lucene.gemspec +23 -0
  165. data/plugins/project_search/vendor/lucene/spec/lucene/document_spec.rb +32 -0
  166. data/plugins/project_search/vendor/lucene/spec/lucene/field_info_spec.rb +70 -0
  167. data/plugins/project_search/vendor/lucene/spec/lucene/index_info_spec.rb +76 -0
  168. data/plugins/project_search/vendor/lucene/spec/lucene/index_spec.rb +643 -0
  169. data/plugins/project_search/vendor/lucene/spec/lucene/query_dsl_spec.rb +142 -0
  170. data/plugins/project_search/vendor/lucene/spec/lucene/sort_spec.rb +101 -0
  171. data/plugins/project_search/vendor/lucene/spec/lucene/spec_helper.rb +10 -0
  172. data/plugins/project_search/vendor/lucene/spec/lucene/transaction_spec.rb +118 -0
  173. data/plugins/redcar/features/alter_font_size.feature +25 -0
  174. data/plugins/redcar/features/step_definitions/font_steps.rb +34 -0
  175. data/plugins/redcar/redcar.rb +256 -43
  176. data/plugins/repl/features/command_editing.feature +55 -0
  177. data/plugins/repl/features/command_history.feature +75 -0
  178. data/plugins/repl/features/step_definitions/repl_steps.rb +17 -1
  179. data/plugins/repl/features/support/env.rb +24 -0
  180. data/plugins/repl/features/support/fake_repl.rb +16 -0
  181. data/plugins/repl/lib/repl.rb +17 -74
  182. data/plugins/repl/lib/repl/repl_command.rb +20 -0
  183. data/plugins/repl/lib/repl/repl_mirror.rb +168 -22
  184. data/plugins/repl/lib/repl/repl_tab.rb +131 -6
  185. data/plugins/repl/plugin.rb +1 -1
  186. data/plugins/repl/spec/repl/repl_mirror_spec.rb +72 -0
  187. data/plugins/repl/spec/spec_helper.rb +1 -1
  188. data/plugins/repl_swt/lib/repl_swt.rb +7 -0
  189. data/plugins/repl_swt/lib/repl_swt/key_listener.rb +43 -0
  190. data/plugins/repl_swt/plugin.rb +8 -0
  191. data/plugins/ruby/lib/ruby.rb +35 -0
  192. data/plugins/{repl/lib/repl/ruby_mirror.rb → ruby/lib/ruby/repl_mirror.rb} +12 -12
  193. data/plugins/ruby/lib/{syntax_check/ruby.rb → ruby/syntax_checker.rb} +3 -3
  194. data/plugins/ruby/plugin.rb +5 -4
  195. data/plugins/{repl/spec/repl/ruby_mirror_spec.rb → ruby/spec/ruby/repl_mirror_spec.rb} +38 -29
  196. data/plugins/ruby/spec/spec_helper.rb +5 -0
  197. data/plugins/runnables/lib/runnables.rb +2 -0
  198. data/plugins/runnables/lib/runnables/command_output_controller.rb +5 -0
  199. data/plugins/runnables/lib/runnables/output_processor.rb +14 -3
  200. data/plugins/runnables/views/command_output.html.erb +3 -2
  201. data/plugins/scm/lib/scm.rb +4 -2
  202. data/plugins/scm/lib/scm/diff_mirror.rb +6 -6
  203. data/plugins/scm_git/lib/scm_git.rb +136 -107
  204. data/plugins/scm_git/lib/scm_git/change.rb +28 -19
  205. data/plugins/snippets/lib/snippets/explorer.rb +2 -2
  206. data/plugins/swt/lib/swt/full_swt.rb +1 -0
  207. data/plugins/syntax_check/features/step_definitions/syntax_check_steps.rb +4 -0
  208. data/plugins/syntax_check/features/support/env.rb +3 -0
  209. data/plugins/syntax_check/lib/syntax_check.rb +71 -5
  210. data/plugins/syntax_check/lib/syntax_check/annotation.rb +61 -0
  211. data/plugins/test_runner/lib/test_runner.rb +39 -0
  212. data/plugins/test_runner/lib/test_runner/rspec_runner.rb +20 -0
  213. data/plugins/test_runner/lib/test_runner/run_test_command.rb +63 -0
  214. data/plugins/test_runner/lib/test_runner/runnable_test_runner.rb +26 -0
  215. data/plugins/test_runner/plugin.rb +8 -0
  216. data/plugins/test_runner/spec/run_test_command_spec.rb +51 -0
  217. data/plugins/test_runner/spec/spec_helper.rb +5 -0
  218. data/plugins/textmate/lib/textmate.rb +12 -2
  219. data/plugins/textmate/vendor/redcar-bundles/Bundles/HTML.tmbundle/Syntaxes/HTML.plist +0 -2
  220. data/plugins/textmate/vendor/redcar-bundles/Bundles/Mirah.tmbundle/Syntaxes/Mirah.plist +22 -0
  221. data/plugins/textmate/vendor/redcar-bundles/Bundles/Mirah.tmbundle/info.plist +12 -0
  222. data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist +2 -0
  223. data/plugins/todo_list/lib/todo_list.rb +7 -0
  224. data/plugins/todo_list/lib/todo_list/todo_controller.rb +3 -1
  225. data/plugins/tree/lib/tree.rb +4 -0
  226. data/plugins/tree_view_swt/lib/tree_view_swt.rb +5 -0
  227. data/plugins/web_bookmarks/lib/web_bookmarks.rb +10 -0
  228. metadata +137 -22
  229. data/plugins/document_search/features/search.feature +0 -163
  230. data/plugins/document_search/lib/document_search/replace_all_command.rb +0 -27
  231. data/plugins/document_search/lib/document_search/replace_command.rb +0 -38
  232. data/plugins/document_search/lib/document_search/replace_next_command.rb +0 -27
  233. data/plugins/document_search/lib/document_search/search_and_replace.rb +0 -81
  234. data/plugins/ruby/README +0 -6
@@ -0,0 +1,8 @@
1
+
2
+ Plugin.define do
3
+ name "test_runner"
4
+ version "1.0"
5
+ file "lib", "test_runner"
6
+ object "Redcar::TestRunner"
7
+ dependencies "redcar", ">0"
8
+ end
@@ -0,0 +1,51 @@
1
+ require File.join(File.dirname(__FILE__), 'spec_helper')
2
+
3
+ describe Redcar::RunTestCommand do
4
+ describe "calling run_test" do
5
+ before do
6
+ storage_file = File.join(Redcar.user_dir, "storage", "test_runner.yaml")
7
+ FileUtils.rm(storage_file) if File.exists?(storage_file)
8
+ Redcar::RunTestCommand.class_eval { @storage = nil}
9
+ @run_test_command = Redcar::RunTestCommand.new
10
+ Redcar::Project::Manager.stub!(:focussed_project).and_return(mock("project", {:path => "foo"}))
11
+ end
12
+ describe "with a test_unit test" do
13
+ before do
14
+ @test_path = "foo/bar/foo_test.rb"
15
+ end
16
+ describe "with a line that doesn't match a pattern" do
17
+ it "should run the test file" do
18
+ Redcar::Runnables.should_receive(:run_process).with(
19
+ "foo", "ruby -Itest #{@test_path}", "Running test: foo_test.rb")
20
+ @run_test_command.run_test(@test_path, "whatever")
21
+ end
22
+ end
23
+ describe "with a line that matches a pattern" do
24
+ it "should run the test file" do
25
+ Redcar::Runnables.should_receive(:run_process).with(
26
+ "foo", "ruby -Itest #{@test_path} -n \"/this is a context/\"", "Running test: this is a context")
27
+ @run_test_command.run_test(@test_path, %{context "this is a context"})
28
+ end
29
+ end
30
+ end
31
+ describe "with an rspec2 spec" do
32
+ before do
33
+ @test_path = "foo/bar/foo_spec.rb"
34
+ end
35
+ describe "with a line that doesn't match a pattern" do
36
+ it "should run the test file" do
37
+ Redcar::Runnables.should_receive(:run_process).with(
38
+ "foo", "ruby -Ispec #{@test_path}", "Running test: foo_spec.rb")
39
+ @run_test_command.run_test(@test_path, "whatever")
40
+ end
41
+ end
42
+ describe "with a line that matches a pattern" do
43
+ it "should run the test file" do
44
+ Redcar::Runnables.should_receive(:run_process).with(
45
+ "foo", %{ruby -Ispec #{@test_path} -e "this is a context"}, "Running test: this is a context")
46
+ @run_test_command.run_test(@test_path, %{describe "this is a context"})
47
+ end
48
+ end
49
+ end
50
+ end
51
+ end
@@ -0,0 +1,5 @@
1
+ $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
+
3
+ require 'redcar'
4
+ Redcar.environment = :test
5
+ Redcar.load_unthreaded
@@ -6,7 +6,7 @@ require 'textmate/preference'
6
6
  require 'textmate/snippet'
7
7
  require 'textmate/tree_mirror'
8
8
  require 'textmate/commands'
9
-
9
+
10
10
  module Redcar
11
11
  module Textmate
12
12
  def self.all_bundle_paths
@@ -26,7 +26,17 @@ module Redcar
26
26
  end
27
27
  end
28
28
  end
29
-
29
+
30
+ def self.keymaps
31
+ osx = Redcar::Keymap.build("main", [:osx]) do
32
+ link "Cmd+Shift+B", ShowSnippetTree
33
+ end
34
+ lin = Redcar::Keymap.build("main", [:windows,:linux]) do
35
+ link "Ctrl+Shift+B", ShowSnippetTree
36
+ end
37
+ [osx,lin]
38
+ end
39
+
30
40
  def self.toolbars
31
41
  Redcar::ToolBar::Builder.build do
32
42
  item "Snippet Browser", :command => Textmate::ShowSnippetTree, :icon => File.join(Redcar::ICONS_DIRECTORY, "document-tree.png"), :barname => :help
@@ -15,8 +15,6 @@
15
15
  <string>tpl</string>
16
16
  <string>ctp</string>
17
17
  </array>
18
- <key>firstLineMatch</key>
19
- <string>&lt;!DOCTYPE|&lt;(?i:html)|&lt;\?(?i:php)</string>
20
18
  <key>foldingStartMarker</key>
21
19
  <string>(?x)
22
20
  (&lt;(?i:head|body|table|thead|tbody|tfoot|tr|div|select|fieldset|style|script|ul|ol|li|form|dl)\b.*?&gt;
@@ -0,0 +1,22 @@
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>fileTypes</key>
6
+ <array>
7
+ <string>mirah</string>
8
+ <string>duby</string>
9
+ </array>
10
+ <key>name</key>
11
+ <string>Mirah</string>
12
+ <key>scopeName</key>
13
+ <string>source.mirah</string>
14
+ <key>patterns</key>
15
+ <array>
16
+ <dict>
17
+ <key>include</key>
18
+ <string>source.ruby</string>
19
+ </dict>
20
+ </array>
21
+ </dict>
22
+ </plist>
@@ -0,0 +1,12 @@
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>contactName</key>
6
+ <string>Delisa Mason</string>
7
+ <key>description</key>
8
+ <string>Syntax highlighting for Mirah</string>
9
+ <key>uuid</key>
10
+ <string>934B53DB-CE02-48CD-AEDD-190093FB53D8</string>
11
+ </dict>
12
+ </plist>
@@ -49,6 +49,7 @@
49
49
  <string>rb</string>
50
50
  <string>rbx</string>
51
51
  <string>rjs</string>
52
+ <string>ru</string>
52
53
  <string>Rakefile</string>
53
54
  <string>rake</string>
54
55
  <string>cgi</string>
@@ -57,6 +58,7 @@
57
58
  <string>Gemfile</string>
58
59
  <string>irbrc</string>
59
60
  <string>capfile</string>
61
+ <string>Capfile</string>
60
62
  </array>
61
63
  <key>firstLineMatch</key>
62
64
  <string>^#!/.*\bruby</string>
@@ -15,6 +15,13 @@ module Redcar
15
15
  end
16
16
  end
17
17
 
18
+ def self.keymaps
19
+ map = Redcar::Keymap.build("main",[:osx,:linux,:windows]) do
20
+ link "Alt+Shift+T", TodoList::ViewListCommand
21
+ end
22
+ [map]
23
+ end
24
+
18
25
  def self.storage
19
26
  @storage ||= begin
20
27
  storage = Plugin::Storage.new('todo_list_plugin')
@@ -24,8 +24,10 @@ module Redcar
24
24
  document.cursor_offset = offset
25
25
  document.scroll_to_line(line)
26
26
  end
27
+ tab.focus
28
+ else
29
+ Application::Dialog.message_box "File #{path} could not be found."
27
30
  end
28
- tab.focus
29
31
  false
30
32
  end
31
33
 
@@ -75,6 +75,10 @@ module Redcar
75
75
  notify_listeners(:select_element, node)
76
76
  end
77
77
 
78
+ def focus
79
+ notify_listeners(:focus)
80
+ end
81
+
78
82
  # @return [Array<NodeMirror>] the selected nodes
79
83
  def selection
80
84
  controller.selection
@@ -59,6 +59,7 @@ module Redcar
59
59
  @model.add_listener(:edit_element, &method(:edit_element))
60
60
  @model.add_listener(:expand_element, &method(:expand_element))
61
61
  @model.add_listener(:select_element, &method(:select_element))
62
+ @model.add_listener(:focus, &method(:focus))
62
63
  end
63
64
 
64
65
  def tree_mirror
@@ -207,6 +208,10 @@ module Redcar
207
208
  @viewer.expandToLevel(element, 1)
208
209
  end
209
210
  end
211
+
212
+ def focus
213
+ @viewer.get_tree.set_focus
214
+ end
210
215
 
211
216
  def select_element(element)
212
217
  if item = element_to_item(element)
@@ -23,6 +23,16 @@ module Redcar
23
23
  end
24
24
  end
25
25
 
26
+ def self.keymaps
27
+ osx = Keymap.build("main", :osx) do
28
+ link "Cmd+Shift+?", WebBookmarks::ShowTree
29
+ end
30
+ lin = Keymap.build("main", [:linux,:windows]) do
31
+ link "Ctrl+Shift+?", WebBookmarks::ShowTree
32
+ end
33
+ [osx,lin]
34
+ end
35
+
26
36
  def self.toolbars
27
37
  Redcar::ToolBar::Builder.build do
28
38
  item "Web Bookmarks", :command => WebBookmarks::ShowTree, :icon => File.join(Redcar::ICONS_DIRECTORY, "globe.png"), :barname => :project
metadata CHANGED
@@ -1,13 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redcar
3
3
  version: !ruby/object:Gem::Version
4
- hash: 63
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
- - 9
9
- - 2
10
- version: 0.9.2
8
+ - 10
9
+ version: "0.10"
11
10
  platform: ruby
12
11
  authors:
13
12
  - Daniel Lucraft
@@ -15,7 +14,7 @@ autorequire:
15
14
  bindir: bin
16
15
  cert_chain: []
17
16
 
18
- date: 2010-12-13 00:00:00 +00:00
17
+ date: 2011-01-17 00:00:00 +00:00
19
18
  default_executable:
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
@@ -3640,6 +3639,7 @@ files:
3640
3639
  - plugins/application/features/step_definitions/command_steps.rb
3641
3640
  - plugins/application/features/step_definitions/dialog_steps.rb
3642
3641
  - plugins/application/features/step_definitions/filter_list_dialog_steps.rb
3642
+ - plugins/application/features/step_definitions/key_steps.rb
3643
3643
  - plugins/application/features/step_definitions/menu_steps.rb
3644
3644
  - plugins/application/features/step_definitions/speedbar_steps.rb
3645
3645
  - plugins/application/features/step_definitions/tree_steps.rb
@@ -3653,6 +3653,7 @@ files:
3653
3653
  - plugins/application/lib/application/command.rb
3654
3654
  - plugins/application/lib/application/dialog.rb
3655
3655
  - plugins/application/lib/application/dialogs/filter_list_dialog.rb
3656
+ - plugins/application/lib/application/dialogs/modeless_list_dialog.rb
3656
3657
  - plugins/application/lib/application/event_spewer.rb
3657
3658
  - plugins/application/lib/application/keymap/builder.rb
3658
3659
  - plugins/application/lib/application/keymap.rb
@@ -3700,8 +3701,12 @@ files:
3700
3701
  - plugins/application_swt/lib/application_swt/dialog_adapter.rb
3701
3702
  - plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb
3702
3703
  - plugins/application_swt/lib/application_swt/dialogs/input_dialog.rb
3704
+ - plugins/application_swt/lib/application_swt/dialogs/modeless_dialog.rb
3705
+ - plugins/application_swt/lib/application_swt/dialogs/modeless_html_dialog.rb
3706
+ - plugins/application_swt/lib/application_swt/dialogs/modeless_list_dialog_controller.rb
3703
3707
  - plugins/application_swt/lib/application_swt/dialogs/no_buttons_dialog.rb
3704
3708
  - plugins/application_swt/lib/application_swt/dialogs/text_and_file_dialog.rb
3709
+ - plugins/application_swt/lib/application_swt/gradient.rb
3705
3710
  - plugins/application_swt/lib/application_swt/html_tab.rb
3706
3711
  - plugins/application_swt/lib/application_swt/icon.rb
3707
3712
  - plugins/application_swt/lib/application_swt/menu/binding_translator.rb
@@ -3727,6 +3732,7 @@ files:
3727
3732
  - plugins/application_swt/lib/swt/vtab_item.rb
3728
3733
  - plugins/application_swt/lib/swt/vtab_label.rb
3729
3734
  - plugins/application_swt/plugin.rb
3735
+ - plugins/application_swt/spec/application_swt/gradient_spec.rb
3730
3736
  - plugins/application_swt/spec/application_swt/menu/binding_translator_spec.rb
3731
3737
  - plugins/application_swt/spec/application_swt/menu_spec.rb
3732
3738
  - plugins/application_swt/spec/spec_helper.rb
@@ -3736,6 +3742,7 @@ files:
3736
3742
  - plugins/auto_completer/features/support/env.rb
3737
3743
  - plugins/auto_completer/lib/auto_completer/current_document_completion_source.rb
3738
3744
  - plugins/auto_completer/lib/auto_completer/document_controller.rb
3745
+ - plugins/auto_completer/lib/auto_completer/list_dialog.rb
3739
3746
  - plugins/auto_completer/lib/auto_completer/word_iterator.rb
3740
3747
  - plugins/auto_completer/lib/auto_completer/word_list.rb
3741
3748
  - plugins/auto_completer/lib/auto_completer.rb
@@ -3766,6 +3773,14 @@ files:
3766
3773
  - plugins/clipboard-viewer/views/clipboard.html.erb
3767
3774
  - plugins/clipboard-viewer/views/default.css
3768
3775
  - plugins/clipboard-viewer/views/redcar_small_icon.png
3776
+ - plugins/clojure/lib/clojure/repl_mirror.rb
3777
+ - plugins/clojure/lib/clojure.rb
3778
+ - plugins/clojure/plugin.rb
3779
+ - plugins/clojure/spec/clojure/repl_mirror_spec.rb
3780
+ - plugins/clojure/spec/spec_helper.rb
3781
+ - plugins/clojure/vendor/dummy
3782
+ - plugins/clojure/vendor/enclojure-wrapper.jar
3783
+ - plugins/clojure/vendor/Wrapper.clj
3769
3784
  - plugins/comment/features/line_comment.feature
3770
3785
  - plugins/comment/features/selection_comment.feature
3771
3786
  - plugins/comment/features/step_definitions/comment_steps.rb
@@ -3813,13 +3828,14 @@ files:
3813
3828
  - plugins/declarations/spec/declarations/file_spec.rb
3814
3829
  - plugins/declarations/spec/fixtures/federalist.rb
3815
3830
  - plugins/declarations/spec/spec_helper.rb
3831
+ - plugins/document_search/features/find.feature
3832
+ - plugins/document_search/features/find_and_replace.feature
3816
3833
  - plugins/document_search/features/replace.feature
3817
- - plugins/document_search/features/search.feature
3818
3834
  - plugins/document_search/features/support/env.rb
3819
- - plugins/document_search/lib/document_search/replace_all_command.rb
3820
- - plugins/document_search/lib/document_search/replace_command.rb
3821
- - plugins/document_search/lib/document_search/replace_next_command.rb
3822
- - plugins/document_search/lib/document_search/search_and_replace.rb
3835
+ - plugins/document_search/lib/document_search/commands.rb
3836
+ - plugins/document_search/lib/document_search/find_and_replace_speedbar.rb
3837
+ - plugins/document_search/lib/document_search/find_speedbar.rb
3838
+ - plugins/document_search/lib/document_search/query_options.rb
3823
3839
  - plugins/document_search/lib/document_search.rb
3824
3840
  - plugins/document_search/plugin.rb
3825
3841
  - plugins/document_search/Readme.md
@@ -3909,8 +3925,13 @@ files:
3909
3925
  - plugins/groovy/features/step_definitions/groovy_steps.rb
3910
3926
  - plugins/groovy/features/support/env.rb
3911
3927
  - plugins/groovy/features/syntax_check_groovy.feature
3912
- - plugins/groovy/lib/syntax_check/groovy.rb
3928
+ - plugins/groovy/lib/groovy/commands.rb
3929
+ - plugins/groovy/lib/groovy/repl_mirror.rb
3930
+ - plugins/groovy/lib/groovy/syntax_checker.rb
3931
+ - plugins/groovy/lib/groovy.rb
3913
3932
  - plugins/groovy/plugin.rb
3933
+ - plugins/groovy/spec/groovy/repl_mirror_spec.rb
3934
+ - plugins/groovy/spec/spec_helper.rb
3914
3935
  - plugins/help/lib/help/help_tab.rb
3915
3936
  - plugins/help/lib/help/view_controller.rb
3916
3937
  - plugins/help/lib/help.rb
@@ -3929,6 +3950,7 @@ files:
3929
3950
  - plugins/html_view/assets/blueprint/src/reset.css
3930
3951
  - plugins/html_view/assets/blueprint/src/typography.css
3931
3952
  - plugins/html_view/assets/jquery-1.4.min.js
3953
+ - plugins/html_view/assets/json2.js
3932
3954
  - plugins/html_view/assets/redcar.css
3933
3955
  - plugins/html_view/features/browser_bar.feature
3934
3956
  - plugins/html_view/features/fixtures/other.html
@@ -3944,7 +3966,14 @@ files:
3944
3966
  - plugins/html_view/lib/html_view.rb
3945
3967
  - plugins/html_view/plugin.rb
3946
3968
  - plugins/html_view/views/index.html.erb
3969
+ - plugins/java/features/fixtures/test.java
3970
+ - plugins/java/features/support/env.rb
3971
+ - plugins/java/features/syntax_check_java.feature
3972
+ - plugins/java/lib/syntax_check/java.rb
3973
+ - plugins/java/plugin.rb
3947
3974
  - plugins/javascript/features/fixtures/test.js
3975
+ - plugins/javascript/features/fixtures/test2.js
3976
+ - plugins/javascript/features/step_definitions/javascript_steps.rb
3948
3977
  - plugins/javascript/features/support/env.rb
3949
3978
  - plugins/javascript/features/syntax_check_javascript.feature
3950
3979
  - plugins/javascript/lib/syntax_check/javascript.rb
@@ -3977,6 +4006,17 @@ files:
3977
4006
  - plugins/macros/spec/macros/predictive/sequence_finder_spec.rb
3978
4007
  - plugins/macros/spec/spec_helper.rb
3979
4008
  - plugins/macros/views/macro_manager.html.erb
4009
+ - plugins/mirah/features/fixtures/test.mirah
4010
+ - plugins/mirah/features/syntax_check_mirah.feature
4011
+ - plugins/mirah/lib/mirah/my_error_handler.rb
4012
+ - plugins/mirah/lib/mirah/repl_mirror.rb
4013
+ - plugins/mirah/lib/mirah/syntax_checker.rb
4014
+ - plugins/mirah/lib/mirah.rb
4015
+ - plugins/mirah/plugin.rb
4016
+ - plugins/mirah/README
4017
+ - plugins/mirah/spec/mirah/repl_mirror_spec.rb
4018
+ - plugins/mirah/spec/spec_helper.rb
4019
+ - plugins/mirah/vendor/mirah-parser.jar
3980
4020
  - plugins/my_plugin/lib/my_plugin.rb
3981
4021
  - plugins/my_plugin/plugin.rb
3982
4022
  - plugins/open_default_app/lib/open_default_app.rb
@@ -4011,6 +4051,7 @@ files:
4011
4051
  - plugins/project/features/step_definitions/directory_steps.rb
4012
4052
  - plugins/project/features/step_definitions/drb_steps.rb
4013
4053
  - plugins/project/features/step_definitions/file_steps.rb
4054
+ - plugins/project/features/step_definitions/find_file_steps.rb
4014
4055
  - plugins/project/features/step_definitions/project_tree_steps.rb
4015
4056
  - plugins/project/features/sub_project.feature
4016
4057
  - plugins/project/features/support/env.rb
@@ -4228,7 +4269,67 @@ files:
4228
4269
  - plugins/project/vendor/net-ssh/test/transport/test_state.rb
4229
4270
  - plugins/project/vendor/net-ssh/THANKS.rdoc
4230
4271
  - plugins/project/views/bulk_rename.html.erb
4272
+ - plugins/project_search/vendor/lucene/CHANGELOG
4273
+ - plugins/project_search/vendor/lucene/CONTRIBUTORS
4274
+ - plugins/project_search/vendor/lucene/examples/active_model/serializers.rb
4275
+ - plugins/project_search/vendor/lucene/examples/active_model/validation.rb
4276
+ - plugins/project_search/vendor/lucene/examples/admin/admin.rb
4277
+ - plugins/project_search/vendor/lucene/examples/admin/public/jquery.js
4278
+ - plugins/project_search/vendor/lucene/examples/admin/public/neo4j.css
4279
+ - plugins/project_search/vendor/lucene/examples/admin/public/neo_admin.js
4280
+ - plugins/project_search/vendor/lucene/examples/admin/Rakefile
4281
+ - plugins/project_search/vendor/lucene/examples/admin/spec/admin_spec.rb
4282
+ - plugins/project_search/vendor/lucene/examples/admin/views/index.erb
4283
+ - plugins/project_search/vendor/lucene/examples/filetree/app.rb
4284
+ - plugins/project_search/vendor/lucene/examples/filetree/batch.props
4285
+ - plugins/project_search/vendor/lucene/examples/filetree/features/step_definitions/add_steps.rb
4286
+ - plugins/project_search/vendor/lucene/examples/filetree/features/support/env.rb
4287
+ - plugins/project_search/vendor/lucene/examples/filetree/features/support/rspec_helper.rb
4288
+ - plugins/project_search/vendor/lucene/examples/filetree/features/treesizes.feature
4289
+ - plugins/project_search/vendor/lucene/examples/filetree/README.rdoc
4290
+ - plugins/project_search/vendor/lucene/examples/imdb/1_create_neo_db.rb
4291
+ - plugins/project_search/vendor/lucene/examples/imdb/2_index_db.rb
4292
+ - plugins/project_search/vendor/lucene/examples/imdb/find_actors.rb
4293
+ - plugins/project_search/vendor/lucene/examples/imdb/install.sh
4294
+ - plugins/project_search/vendor/lucene/examples/imdb/model.rb
4295
+ - plugins/project_search/vendor/lucene/examples/imdb/README
4296
+ - plugins/project_search/vendor/lucene/examples/railway/railnet-app.rb
4297
+ - plugins/project_search/vendor/lucene/examples/railway/railnet-data.rb
4298
+ - plugins/project_search/vendor/lucene/examples/railway/README
4299
+ - plugins/project_search/vendor/lucene/examples/rest/example.rb
4300
+ - plugins/project_search/vendor/lucene/examples/you_might_know/all_simple_paths.rb
4301
+ - plugins/project_search/vendor/lucene/examples/you_might_know/nodes.rb
4302
+ - plugins/project_search/vendor/lucene/examples/you_might_know/you_might_know.rb
4303
+ - plugins/project_search/vendor/lucene/examples/you_might_know/YouMightKnow.java
4304
+ - plugins/project_search/vendor/lucene/Gemfile
4305
+ - plugins/project_search/vendor/lucene/Gemfile.lock
4306
+ - plugins/project_search/vendor/lucene/lib/lucene/config.rb
4307
+ - plugins/project_search/vendor/lucene/lib/lucene/document.rb
4308
+ - plugins/project_search/vendor/lucene/lib/lucene/field_info.rb
4309
+ - plugins/project_search/vendor/lucene/lib/lucene/hits.rb
4310
+ - plugins/project_search/vendor/lucene/lib/lucene/index.rb
4311
+ - plugins/project_search/vendor/lucene/lib/lucene/index_info.rb
4312
+ - plugins/project_search/vendor/lucene/lib/lucene/index_searcher.rb
4313
+ - plugins/project_search/vendor/lucene/lib/lucene/jars.rb
4314
+ - plugins/project_search/vendor/lucene/lib/lucene/query_dsl.rb
4315
+ - plugins/project_search/vendor/lucene/lib/lucene/transaction.rb
4316
+ - plugins/project_search/vendor/lucene/lib/lucene/version.rb
4317
+ - plugins/project_search/vendor/lucene/lib/lucene.rb
4318
+ - plugins/project_search/vendor/lucene/LICENSE
4319
+ - plugins/project_search/vendor/lucene/lucene.gemspec
4320
+ - plugins/project_search/vendor/lucene/Rakefile
4321
+ - plugins/project_search/vendor/lucene/README.rdoc
4322
+ - plugins/project_search/vendor/lucene/spec/lucene/document_spec.rb
4323
+ - plugins/project_search/vendor/lucene/spec/lucene/field_info_spec.rb
4324
+ - plugins/project_search/vendor/lucene/spec/lucene/index_info_spec.rb
4325
+ - plugins/project_search/vendor/lucene/spec/lucene/index_spec.rb
4326
+ - plugins/project_search/vendor/lucene/spec/lucene/query_dsl_spec.rb
4327
+ - plugins/project_search/vendor/lucene/spec/lucene/sort_spec.rb
4328
+ - plugins/project_search/vendor/lucene/spec/lucene/spec_helper.rb
4329
+ - plugins/project_search/vendor/lucene/spec/lucene/transaction_spec.rb
4330
+ - plugins/redcar/features/alter_font_size.feature
4231
4331
  - plugins/redcar/features/goto_line_command.feature
4332
+ - plugins/redcar/features/step_definitions/font_steps.rb
4232
4333
  - plugins/redcar/plugin.rb
4233
4334
  - plugins/redcar/redcar.rb
4234
4335
  - plugins/redcar_debug/lib/redcar_debug.rb
@@ -4263,27 +4364,30 @@ files:
4263
4364
  - plugins/redcar_debug/vendor/jruby-prof/test/basic_test.rb
4264
4365
  - plugins/redcar_debug/views/history.html.erb
4265
4366
  - plugins/redcar_debug/views/index.html.erb
4367
+ - plugins/repl/features/command_editing.feature
4368
+ - plugins/repl/features/command_history.feature
4266
4369
  - plugins/repl/features/step_definitions/repl_steps.rb
4267
- - plugins/repl/lib/repl/clojure_mirror.rb
4268
- - plugins/repl/lib/repl/groovy_mirror.rb
4370
+ - plugins/repl/features/support/env.rb
4371
+ - plugins/repl/features/support/fake_repl.rb
4372
+ - plugins/repl/lib/repl/repl_command.rb
4269
4373
  - plugins/repl/lib/repl/repl_mirror.rb
4270
4374
  - plugins/repl/lib/repl/repl_tab.rb
4271
- - plugins/repl/lib/repl/ruby_mirror.rb
4272
4375
  - plugins/repl/lib/repl.rb
4273
4376
  - plugins/repl/plugin.rb
4274
- - plugins/repl/spec/repl/clojure_mirror_spec.rb
4275
- - plugins/repl/spec/repl/groovy_mirror_spec.rb
4276
- - plugins/repl/spec/repl/ruby_mirror_spec.rb
4377
+ - plugins/repl/spec/repl/repl_mirror_spec.rb
4277
4378
  - plugins/repl/spec/spec_helper.rb
4278
- - plugins/repl/vendor/dummy
4279
- - plugins/repl/vendor/enclojure-wrapper.jar
4280
- - plugins/repl/vendor/Wrapper.clj
4379
+ - plugins/repl_swt/lib/repl_swt/key_listener.rb
4380
+ - plugins/repl_swt/lib/repl_swt.rb
4381
+ - plugins/repl_swt/plugin.rb
4281
4382
  - plugins/ruby/features/fixtures/test.rb
4282
4383
  - plugins/ruby/features/support/env.rb
4283
4384
  - plugins/ruby/features/syntax_check_ruby.feature
4284
- - plugins/ruby/lib/syntax_check/ruby.rb
4385
+ - plugins/ruby/lib/ruby/repl_mirror.rb
4386
+ - plugins/ruby/lib/ruby/syntax_checker.rb
4387
+ - plugins/ruby/lib/ruby.rb
4285
4388
  - plugins/ruby/plugin.rb
4286
- - plugins/ruby/README
4389
+ - plugins/ruby/spec/ruby/repl_mirror_spec.rb
4390
+ - plugins/ruby/spec/spec_helper.rb
4287
4391
  - plugins/runnables/features/command_tree.feature
4288
4392
  - plugins/runnables/features/file_runner_input.feature
4289
4393
  - plugins/runnables/features/parameter_input.feature
@@ -4686,6 +4790,8 @@ files:
4686
4790
  - plugins/swt/lib/swt.rb
4687
4791
  - plugins/swt/plugin.rb
4688
4792
  - plugins/syntax_check/features/step_definitions/syntax_check_steps.rb
4793
+ - plugins/syntax_check/features/support/env.rb
4794
+ - plugins/syntax_check/lib/syntax_check/annotation.rb
4689
4795
  - plugins/syntax_check/lib/syntax_check/checker.rb
4690
4796
  - plugins/syntax_check/lib/syntax_check/error.rb
4691
4797
  - plugins/syntax_check/lib/syntax_check.rb
@@ -4694,6 +4800,13 @@ files:
4694
4800
  - plugins/task_manager/lib/task_manager.rb
4695
4801
  - plugins/task_manager/plugin.rb
4696
4802
  - plugins/task_manager/views/index.html.erb
4803
+ - plugins/test_runner/lib/test_runner/rspec_runner.rb
4804
+ - plugins/test_runner/lib/test_runner/run_test_command.rb
4805
+ - plugins/test_runner/lib/test_runner/runnable_test_runner.rb
4806
+ - plugins/test_runner/lib/test_runner.rb
4807
+ - plugins/test_runner/plugin.rb
4808
+ - plugins/test_runner/spec/run_test_command_spec.rb
4809
+ - plugins/test_runner/spec/spec_helper.rb
4697
4810
  - plugins/textmate/features/bundle_tree.feature
4698
4811
  - plugins/textmate/features/step_definitions/tree_steps.rb
4699
4812
  - plugins/textmate/features/support/env.rb
@@ -4803,6 +4916,7 @@ files:
4803
4916
  - plugins/textmate/vendor/redcar-bundles/Bundles/Makefile.tmbundle/Syntaxes/Makefile.plist
4804
4917
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Syntaxes/Markdown.plist
4805
4918
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/Syntaxes/MultiMarkdown.tmLanguage
4919
+ - plugins/textmate/vendor/redcar-bundles/Bundles/Mirah.tmbundle/Syntaxes/Mirah.plist
4806
4920
  - plugins/textmate/vendor/redcar-bundles/Bundles/Palm-WebOS-Development.tmbundle/Syntaxes/Mojo.tmLanguage
4807
4921
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl HTML-Template.tmbundle/Syntaxes/Perl_HTML__Template.tmLanguage
4808
4922
  - plugins/textmate/vendor/redcar-bundles/Bundles/Perl Template Toolkit.tmbundle/Syntaxes/HTML___Template_Toolkit__.tmLanguage
@@ -6782,6 +6896,7 @@ files:
6782
6896
  - plugins/textmate/vendor/redcar-bundles/Bundles/Makefile.tmbundle/info.plist
6783
6897
  - plugins/textmate/vendor/redcar-bundles/Bundles/Markdown.tmbundle/info.plist
6784
6898
  - plugins/textmate/vendor/redcar-bundles/Bundles/Math.tmbundle/info.plist
6899
+ - plugins/textmate/vendor/redcar-bundles/Bundles/Mirah.tmbundle/info.plist
6785
6900
  - plugins/textmate/vendor/redcar-bundles/Bundles/Navigation.tmbundle/info.plist
6786
6901
  - plugins/textmate/vendor/redcar-bundles/Bundles/Outlines.tmbundle/info.plist
6787
6902
  - plugins/textmate/vendor/redcar-bundles/Bundles/Palm-WebOS-Development.tmbundle/info.plist