redcar-dev 0.12.17dev → 0.12.18dev

Sign up to get free protection for your applications and to get access to all the features.
Files changed (155) hide show
  1. data/CHANGES +4 -2
  2. data/README.md +5 -41
  3. data/Rakefile +3 -35
  4. data/lib/redcar.rb +19 -17
  5. data/lib/redcar/runner.rb +1 -7
  6. data/lib/redcar_quick_start.rb +5 -5
  7. data/plugins/application/features/main_menu.feature +1 -1
  8. data/plugins/application/features/step_definitions/command_steps.rb +8 -7
  9. data/plugins/application/features/step_definitions/filter_list_dialog_steps.rb +25 -10
  10. data/plugins/application/features/step_definitions/key_steps.rb +6 -4
  11. data/plugins/application/features/step_definitions/menu_steps.rb +27 -26
  12. data/plugins/application/features/step_definitions/speedbar_steps.rb +28 -16
  13. data/plugins/application/features/step_definitions/tree_steps.rb +88 -64
  14. data/plugins/application/features/step_definitions/window_steps.rb +14 -10
  15. data/plugins/application/features/support/env.rb +85 -83
  16. data/plugins/application/spec/application/application_spec.rb +1 -1
  17. data/plugins/application/spec/application/clipboard_spec.rb +1 -1
  18. data/plugins/application/spec/application/command/executor_spec.rb +1 -1
  19. data/plugins/application/spec/application/command/history_spec.rb +1 -1
  20. data/plugins/application/spec/application/command_spec.rb +1 -1
  21. data/plugins/application/spec/application/keymap/builder_spec.rb +1 -1
  22. data/plugins/application/spec/application/menu/builder_spec.rb +1 -1
  23. data/plugins/application/spec/application/menu/menu_item_spec.rb +1 -1
  24. data/plugins/application/spec/application/menu_spec.rb +1 -1
  25. data/plugins/application/spec/application/navigation_history_spec.rb +2 -0
  26. data/plugins/application/spec/application/notebook_spec.rb +1 -1
  27. data/plugins/application/spec/application/sensitive_spec.rb +1 -1
  28. data/plugins/application/spec/application/speedbar_spec.rb +1 -1
  29. data/plugins/application/spec/application/treebook_spec.rb +1 -1
  30. data/plugins/application/spec/application/window_spec.rb +1 -1
  31. data/plugins/application/spec/spec_helper.rb +4 -6
  32. data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +1 -1
  33. data/plugins/application_swt/lib/application_swt/gradient.rb +15 -5
  34. data/plugins/application_swt/lib/application_swt/window.rb +1 -1
  35. data/plugins/application_swt/spec/application_swt/gradient_spec.rb +13 -14
  36. data/plugins/application_swt/spec/application_swt/menu/binding_translator_spec.rb +1 -1
  37. data/plugins/application_swt/spec/application_swt/menu_spec.rb +1 -1
  38. data/plugins/application_swt/spec/spec_helper.rb +1 -19
  39. data/plugins/auto_completer/features/auto_complete.feature +7 -7
  40. data/plugins/auto_completer/features/step_definitions/auto_complete_steps.rb +3 -1
  41. data/plugins/auto_completer/features/step_definitions/dependency_steps.rb +0 -0
  42. data/plugins/auto_indenter/features/java_style_indentation.feature +5 -3
  43. data/plugins/auto_indenter/features/ruby_style_indentation.feature +13 -13
  44. data/plugins/auto_indenter/features/step_definitions/indentation_steps.rb +3 -1
  45. data/plugins/auto_indenter/spec/auto_indenter/analyzer_spec.rb +1 -1
  46. data/plugins/auto_indenter/spec/spec_helper.rb +1 -5
  47. data/plugins/auto_pairer/features/auto_pairer.feature +1 -1
  48. data/plugins/comment/features/line_comment.feature +31 -26
  49. data/plugins/comment/features/selection_comment.feature +1 -1
  50. data/plugins/comment/features/step_definitions/comment_steps.rb +6 -2
  51. data/plugins/comment/vendor/comment_lib.json +2 -0
  52. data/plugins/core/lib/core.rb +26 -0
  53. data/plugins/core/spec/core/base_storage_spec.rb +1 -1
  54. data/plugins/core/spec/core/gui_spec.rb +1 -1
  55. data/plugins/core/spec/core/observable_spec.rb +2 -1
  56. data/plugins/core/spec/core/persistent_cache_spec.rb +1 -1
  57. data/plugins/core/spec/core/shared_storage_spec.rb +1 -1
  58. data/plugins/core/spec/core/storage_spec.rb +1 -1
  59. data/plugins/core/spec/core/task_queue_spec.rb +1 -3
  60. data/plugins/core/spec/spec_helper.rb +1 -4
  61. data/plugins/declarations/spec/declarations/file_spec.rb +1 -1
  62. data/plugins/declarations/spec/spec_helper.rb +1 -5
  63. data/plugins/document_search/features/find.feature +39 -39
  64. data/plugins/document_search/features/step_definitions/find_steps.rb +6 -2
  65. data/plugins/edit_view/features/align_assignment.feature +6 -82
  66. data/plugins/edit_view/features/case_change.feature +22 -22
  67. data/plugins/edit_view/features/cursor_navigation.feature +2 -2
  68. data/plugins/edit_view/features/cut_and_paste.feature +9 -9
  69. data/plugins/edit_view/features/indentation_commands.feature +8 -8
  70. data/plugins/edit_view/features/line_delimiter.feature +7 -7
  71. data/plugins/edit_view/features/multiple_windows.feature +48 -48
  72. data/plugins/edit_view/features/step_definitions/dependency_steps.rb +0 -0
  73. data/plugins/edit_view/features/step_definitions/editing_steps.rb +237 -127
  74. data/plugins/edit_view/features/step_definitions/grammar_steps.rb +5 -1
  75. data/plugins/edit_view/features/step_definitions/notebook_steps.rb +38 -24
  76. data/plugins/edit_view/features/step_definitions/tab_steps.rb +83 -45
  77. data/plugins/edit_view/features/step_definitions/window_steps.rb +75 -54
  78. data/plugins/edit_view/features/support/env.rb +4 -23
  79. data/plugins/edit_view/lib/edit_view/commands/align_assignment_command.rb +29 -30
  80. data/plugins/edit_view/lib/edit_view/document.rb +23 -0
  81. data/plugins/edit_view/spec/edit_view/commands/align_assignment_command_spec.rb +83 -0
  82. data/plugins/edit_view/spec/edit_view/document/indentation_spec.rb +1 -1
  83. data/plugins/edit_view/spec/edit_view/document_spec.rb +1 -1
  84. data/plugins/edit_view/spec/spec_helper.rb +1 -4
  85. data/plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb +1 -1
  86. data/plugins/edit_view_swt/spec/spec_helper.rb +1 -4
  87. data/plugins/html_view/features/fixtures/sample.html +1 -1
  88. data/plugins/html_view/features/step_definitions/html_view_steps.rb +40 -39
  89. data/plugins/java/features/syntax_check_java.feature +18 -16
  90. data/plugins/line_tools/features/step_definitions/line_tools_steps.rb +18 -6
  91. data/plugins/macros/features/block_selection_in_macros.feature +47 -47
  92. data/plugins/macros/features/step_definitions/macro_steps.rb +9 -3
  93. data/plugins/macros/features/step_definitions/prediction_steps.rb +6 -2
  94. data/plugins/macros/plugin.rb +2 -1
  95. data/plugins/macros/spec/macros/predictive/sequence_finder_spec.rb +1 -1
  96. data/plugins/macros/spec/spec_helper.rb +1 -6
  97. data/plugins/outline_view/features/outline_view.feature +5 -5
  98. data/plugins/outline_view/features/step_definitions/outline_steps.rb +29 -17
  99. data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +1 -1
  100. data/plugins/project/features/close_directory_tree.feature +0 -12
  101. data/plugins/project/features/open_directory_tree.feature +1 -2
  102. data/plugins/project/features/step_definitions/directory_steps.rb +13 -5
  103. data/plugins/project/features/step_definitions/file_steps.rb +23 -9
  104. data/plugins/project/features/step_definitions/find_file_steps.rb +6 -2
  105. data/plugins/project/features/step_definitions/project_tree_steps.rb +6 -2
  106. data/plugins/project/features/watch_for_modified_files.feature +1 -1
  107. data/plugins/project/spec/project/adapters/remote_protocols/ftp_spec.rb +1 -1
  108. data/plugins/project/spec/project/adapters/remote_protocols/sftp_spec.rb +1 -1
  109. data/plugins/project/spec/project/adapters/remote_spec.rb +1 -1
  110. data/plugins/project/spec/project/dir_mirror_spec.rb +1 -1
  111. data/plugins/project/spec/project/file_list_spec.rb +1 -1
  112. data/plugins/project/spec/project/file_mirror_spec.rb +2 -1
  113. data/plugins/project/spec/spec_helper.rb +1 -4
  114. data/plugins/project_search/spec/project_search/binary_data_detector_spec.rb +1 -1
  115. data/plugins/project_search/spec/project_search/word_search_spec.rb +1 -1
  116. data/plugins/project_search/spec/spec_helper.rb +1 -4
  117. data/plugins/{application → redcar}/features/navigation_history.feature +8 -8
  118. data/plugins/redcar/features/step_definitions/font_steps.rb +9 -5
  119. data/plugins/redcar/redcar.rb +0 -26
  120. data/plugins/repl/features/step_definitions/repl_steps.rb +15 -5
  121. data/plugins/repl/plugin.rb +1 -1
  122. data/plugins/repl/spec/repl/repl_mirror_spec.rb +1 -1
  123. data/plugins/repl/spec/spec_helper.rb +1 -4
  124. data/plugins/ruby/spec/ruby/repl_mirror_spec.rb +1 -1
  125. data/plugins/ruby/spec/spec_helper.rb +1 -5
  126. data/plugins/runnables/features/parameter_input.feature +43 -43
  127. data/plugins/runnables/features/step_definitions/runnable_steps.rb +9 -3
  128. data/plugins/runnables/plugin.rb +2 -2
  129. data/plugins/runnables/spec/runnables/output_processor_spec.rb +1 -1
  130. data/plugins/runnables/spec/spec_helper.rb +1 -5
  131. data/plugins/scm_svn/features/add_and_commit.feature +1 -0
  132. data/plugins/scm_svn/features/checkout.feature +1 -0
  133. data/plugins/scm_svn/features/edit_and_index.feature +1 -0
  134. data/plugins/scm_svn/features/ignore_files.feature +1 -0
  135. data/plugins/scm_svn/features/merge.feature +1 -0
  136. data/plugins/scm_svn/features/resolve_conflict.feature +1 -0
  137. data/plugins/scm_svn/features/revert_and_delete.feature +1 -0
  138. data/plugins/scm_svn/features/step_definitions/branch_and_merge_steps.rb +14 -9
  139. data/plugins/scm_svn/features/support/env.rb +4 -4
  140. data/plugins/scm_svn/features/switch_branches.feature +1 -0
  141. data/plugins/scm_svn/features/update.feature +1 -0
  142. data/plugins/strip_trailing_spaces/features/strip_trailing_spaces.feature +4 -4
  143. data/plugins/test_runner/plugin.rb +3 -1
  144. data/plugins/test_runner/spec/run_test_command_spec.rb +58 -50
  145. data/plugins/test_runner/spec/spec_helper.rb +1 -5
  146. data/plugins/textmate/features/step_definitions/tree_steps.rb +2 -0
  147. data/plugins/todo_list/features/todo_list.feature +1 -1
  148. data/plugins/todo_list/spec/spec_helper.rb +1 -4
  149. data/plugins/todo_list/spec/todo_list/file_parser_spec.rb +1 -1
  150. data/plugins/tree_view_swt/lib/tree_view_swt.rb +2 -1
  151. data/plugins/web_bookmarks/features/step_definitions/web_steps.rb +1 -1
  152. metadata +48 -48
  153. data/lib/redcar/installer.rb +0 -178
  154. data/plugins/key_bindings/spec/spec_helper.rb +0 -5
  155. data/plugins/scm/spec/spec_helper.rb +0 -5
@@ -1,5 +1,3 @@
1
- require File.join(Redcar.asset_dir, "svnkit")
2
- require 'java'
3
1
  import 'org.tmatesoft.svn.core.io.SVNRepositoryFactory'
4
2
 
5
3
  def scm_svn_fixtures
@@ -60,12 +58,14 @@ def reset_fixtures
60
58
  svn_module
61
59
  end
62
60
 
63
- Before do
61
+ Before("@svn") do
62
+ p :svn_fixture_before
64
63
  @svn_module = nil
65
64
  reset_fixtures
66
65
  end
67
66
 
68
- After do
67
+ After("@svn") do
68
+ p :svn_fixture_after
69
69
  FileUtils.rm_rf(scm_svn_fixtures)
70
70
  @svn_module = nil
71
71
  end
@@ -1,3 +1,4 @@
1
+ @svn
1
2
  Feature: Opening other branches as new projects
2
3
 
3
4
  Scenario: Opening a branch from trunk
@@ -1,3 +1,4 @@
1
+ @svn
1
2
  Feature: Updating a working copy from a remote repository
2
3
 
3
4
  Scenario: Updating a working copy
@@ -8,8 +8,8 @@ Feature: Strip Trailing Spaces
8
8
  And I replace the contents with "Hi \n \n Foo \n"
9
9
 
10
10
  Scenario: Strip spaces on save
11
- When I click "Enabled" from the "Plugins/Strip Trailing Spaces" menu
12
- When I click "Strip Blank Lines" from the "Plugins/Strip Trailing Spaces" menu
11
+ When I select menu item "Plugins/Strip Trailing Spaces/Enabled"
12
+ When I select menu item "Plugins/Strip Trailing Spaces/Strip Blank Lines" menu
13
13
  And I save the tab
14
14
  Then I should see "Hi\n\n Foo\n" in the edit tab
15
15
 
@@ -24,11 +24,11 @@ Feature: Strip Trailing Spaces
24
24
  Then the contents should be "Hi\n<c>\n Foo\n"
25
25
 
26
26
  Scenario: Strip spaces, but not newlines on save
27
- When I click "Strip Blank Lines" from the "Plugins/Strip Trailing Spaces" menu
27
+ When I select menu item "Plugins/Strip Trailing Spaces/Strip Blank Lines" menu
28
28
  And I save the tab
29
29
  Then I should see "Hi\n \n Foo\n" in the edit tab
30
30
 
31
31
  Scenario: Strip nothing on save
32
- When I click "Enabled" from the "Plugins/Strip Trailing Spaces" menu
32
+ When I select menu item "Plugins/Strip Trailing Spaces/Enabled"
33
33
  And I save the tab
34
34
  Then I should see "Hi \n \n Foo \n" in the edit tab
@@ -4,5 +4,7 @@ Plugin.define do
4
4
  version "1.0"
5
5
  file "lib", "test_runner"
6
6
  object "Redcar::TestRunner"
7
- dependencies "redcar", ">0"
7
+ dependencies "project", ">0",
8
+ "HTML View", ">0",
9
+ "runnables", ">0"
8
10
  end
@@ -1,51 +1,59 @@
1
- require File.join(File.dirname(__FILE__), 'spec_helper')
1
+ # These are broken and I don't understand why - danlucraft 1/10/11
2
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
3
+ # require 'spec_helper'
4
+ #
5
+ # describe Redcar::RunTestCommand do
6
+ # describe "calling run_test" do
7
+ # before do
8
+ # storage_file = File.join(Redcar.user_dir, "storage", "test_runner.yaml")
9
+ # FileUtils.rm(storage_file) if File.exists?(storage_file)
10
+ # Redcar::RunTestCommand.class_eval { @storage = nil}
11
+ # @run_test_command = Redcar::RunTestCommand.new
12
+ # Redcar::Project::Manager.stub!(:focussed_project).and_return(mock("project", {:path => "foo"}))
13
+ # end
14
+ #
15
+ # describe "with a test_unit test" do
16
+ # before do
17
+ # @test_path = "foo/bar/foo_test.rb"
18
+ # end
19
+ #
20
+ # describe "with a line that doesn't match a pattern" do
21
+ # it "should run the test file" do
22
+ # @run_test_command.should_receive(:run_process).with(
23
+ # "ruby -Itest __PATH__", "Running test: foo_test.rb")
24
+ # @run_test_command.run_test(@test_path, "whatever")
25
+ # end
26
+ # end
27
+ #
28
+ # describe "with a line that matches a pattern" do
29
+ # it "should run the test file" do
30
+ # @run_test_command.should_receive(:run_process).with(
31
+ # "ruby -Itest __PATH__ -n \"/this is a context/\"", "Running test: this is a context")
32
+ # @run_test_command.run_test(@test_path, %{context "this is a context"})
33
+ # end
34
+ # end
35
+ # end
36
+ #
37
+ # describe "with an rspec2 spec" do
38
+ # before do
39
+ # @test_path = "foo/bar/foo_spec.rb"
40
+ # end
41
+ #
42
+ # describe "with a line that doesn't match a pattern" do
43
+ # it "should run the test file" do
44
+ # @run_test_command.should_receive(:run_process).with(
45
+ # "ruby -Ispec __PATH__", "Running test: foo_spec.rb")
46
+ # @run_test_command.run_test(@test_path, "whatever")
47
+ # end
48
+ # end
49
+ #
50
+ # describe "with a line that matches a pattern" do
51
+ # it "should run the test file" do
52
+ # @run_test_command.should_receive(:run_process).with(
53
+ # %{ruby -Ispec __PATH__ -e "this is a context"}, "Running test: this is a context")
54
+ # @run_test_command.run_test(@test_path, %{describe "this is a context"})
55
+ # end
56
+ # end
57
+ # end
58
+ # end
59
+ # end
@@ -1,5 +1 @@
1
- $:.push File.join(File.dirname(__FILE__), '..', '..', '..', 'lib')
2
-
3
- require 'redcar'
4
- Redcar.environment = :test
5
- Redcar.load_unthreaded
1
+ Redcar.plugin_manager.load("test_runner")
@@ -1,6 +1,8 @@
1
1
 
2
2
  When /^I click Show Bundles in Tree$/ do
3
+ Swt.sync_exec do
3
4
  Redcar::Textmate::ShowSnippetTree.new.run
5
+ end
4
6
  end
5
7
 
6
8
  Then /^I should see a tree mirror titled "([^"]*)"$/ do |arg1|
@@ -5,7 +5,7 @@ Feature: Adding parameters to commands
5
5
  Background:
6
6
  Given I will choose "plugins/todo_list/spec/fixtures/project" from the "open_directory" dialog
7
7
  And I open a directory
8
- When I open the "Todo List" from the "Project" menu
8
+ When I select menu item "Project/Todo List"
9
9
  And I wait "2" seconds
10
10
 
11
11
  Scenario: Opening the TODO list shows the todo items and their action texts without colons
@@ -1,6 +1,3 @@
1
- $:.push File.expand_path('../../../../lib', __FILE__)
2
1
  require File.expand_path("../fixtures/settings", __FILE__)
3
2
 
4
- require 'redcar'
5
- Redcar.environment = :test
6
- Redcar.load_unthreaded
3
+ Redcar.plugin_manager.load("todo_list")
@@ -1,4 +1,4 @@
1
- require File.expand_path("../../spec_helper", __FILE__)
1
+ require "spec_helper"
2
2
 
3
3
  describe Redcar::TodoList::FileParser do
4
4
  before do
@@ -17,10 +17,11 @@ module Redcar
17
17
  @composite, @model = composite, model
18
18
  color = ApplicationSWT.tree_background.swt_colors.first
19
19
  font_data = @composite.font.font_data.first
20
+ font_size = Redcar.platform == :osx ? 14 : 12
20
21
  font = Swt::Graphics::Font.new(
21
22
  ApplicationSWT.display,
22
23
  font_data.name,
23
- Redcar::EditView.font_size - 4,
24
+ font_size,
24
25
  Swt::SWT::NORMAL)
25
26
  @composite.background = color
26
27
  tree_style = Swt::SWT::MULTI | Swt::SWT::H_SCROLL | Swt::SWT::V_SCROLL
@@ -1,4 +1,4 @@
1
1
 
2
2
  When /^I open the web bookmarks tree$/ do
3
- Redcar::WebBookmarks::ShowWebBookmarksCommand.new.run
3
+ Swt.sync_exec { Redcar::WebBookmarks::ShowWebBookmarksCommand.new.run }
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: redcar-dev
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.17dev
4
+ version: 0.12.18dev
5
5
  prerelease: 7
6
6
  platform: ruby
7
7
  authors:
@@ -9,12 +9,12 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-09-10 00:00:00.000000000 +01:00
12
+ date: 2011-11-16 00:00:00.000000000 +00:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ffi
17
- requirement: &70213337943300 !ruby/object:Gem::Requirement
17
+ requirement: &70354605838600 !ruby/object:Gem::Requirement
18
18
  none: false
19
19
  requirements:
20
20
  - - ! '>='
@@ -22,10 +22,10 @@ dependencies:
22
22
  version: '0'
23
23
  type: :runtime
24
24
  prerelease: false
25
- version_requirements: *70213337943300
25
+ version_requirements: *70354605838600
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: git
28
- requirement: &70213337942880 !ruby/object:Gem::Requirement
28
+ requirement: &70354605838160 !ruby/object:Gem::Requirement
29
29
  none: false
30
30
  requirements:
31
31
  - - ! '>='
@@ -33,10 +33,10 @@ dependencies:
33
33
  version: '0'
34
34
  type: :runtime
35
35
  prerelease: false
36
- version_requirements: *70213337942880
36
+ version_requirements: *70354605838160
37
37
  - !ruby/object:Gem::Dependency
38
38
  name: json
39
- requirement: &70213337942460 !ruby/object:Gem::Requirement
39
+ requirement: &70354605837600 !ruby/object:Gem::Requirement
40
40
  none: false
41
41
  requirements:
42
42
  - - ! '>='
@@ -44,10 +44,10 @@ dependencies:
44
44
  version: '0'
45
45
  type: :runtime
46
46
  prerelease: false
47
- version_requirements: *70213337942460
47
+ version_requirements: *70354605837600
48
48
  - !ruby/object:Gem::Dependency
49
49
  name: spoon
50
- requirement: &70213337942040 !ruby/object:Gem::Requirement
50
+ requirement: &70354605837140 !ruby/object:Gem::Requirement
51
51
  none: false
52
52
  requirements:
53
53
  - - ! '>='
@@ -55,10 +55,10 @@ dependencies:
55
55
  version: '0'
56
56
  type: :runtime
57
57
  prerelease: false
58
- version_requirements: *70213337942040
58
+ version_requirements: *70354605837140
59
59
  - !ruby/object:Gem::Dependency
60
60
  name: lucene
61
- requirement: &70213337941540 !ruby/object:Gem::Requirement
61
+ requirement: &70354605836480 !ruby/object:Gem::Requirement
62
62
  none: false
63
63
  requirements:
64
64
  - - ~>
@@ -66,10 +66,10 @@ dependencies:
66
66
  version: 0.5.0.beta.1
67
67
  type: :runtime
68
68
  prerelease: false
69
- version_requirements: *70213337941540
69
+ version_requirements: *70354605836480
70
70
  - !ruby/object:Gem::Dependency
71
71
  name: net-ssh
72
- requirement: &70213337941120 !ruby/object:Gem::Requirement
72
+ requirement: &70354605835880 !ruby/object:Gem::Requirement
73
73
  none: false
74
74
  requirements:
75
75
  - - ! '>='
@@ -77,10 +77,10 @@ dependencies:
77
77
  version: '0'
78
78
  type: :runtime
79
79
  prerelease: false
80
- version_requirements: *70213337941120
80
+ version_requirements: *70354605835880
81
81
  - !ruby/object:Gem::Dependency
82
82
  name: net-sftp
83
- requirement: &70213337940660 !ruby/object:Gem::Requirement
83
+ requirement: &70354605835400 !ruby/object:Gem::Requirement
84
84
  none: false
85
85
  requirements:
86
86
  - - ! '>='
@@ -88,10 +88,10 @@ dependencies:
88
88
  version: '0'
89
89
  type: :runtime
90
90
  prerelease: false
91
- version_requirements: *70213337940660
91
+ version_requirements: *70354605835400
92
92
  - !ruby/object:Gem::Dependency
93
93
  name: net-ftp-list
94
- requirement: &70213337940240 !ruby/object:Gem::Requirement
94
+ requirement: &70354605834980 !ruby/object:Gem::Requirement
95
95
  none: false
96
96
  requirements:
97
97
  - - ! '>='
@@ -99,10 +99,10 @@ dependencies:
99
99
  version: '0'
100
100
  type: :runtime
101
101
  prerelease: false
102
- version_requirements: *70213337940240
102
+ version_requirements: *70354605834980
103
103
  - !ruby/object:Gem::Dependency
104
104
  name: jruby-openssl
105
- requirement: &70213337939820 !ruby/object:Gem::Requirement
105
+ requirement: &70354605834560 !ruby/object:Gem::Requirement
106
106
  none: false
107
107
  requirements:
108
108
  - - ! '>='
@@ -110,10 +110,10 @@ dependencies:
110
110
  version: '0'
111
111
  type: :runtime
112
112
  prerelease: false
113
- version_requirements: *70213337939820
113
+ version_requirements: *70354605834560
114
114
  - !ruby/object:Gem::Dependency
115
115
  name: ruby-blockcache
116
- requirement: &70213337939400 !ruby/object:Gem::Requirement
116
+ requirement: &70354605834040 !ruby/object:Gem::Requirement
117
117
  none: false
118
118
  requirements:
119
119
  - - ! '>='
@@ -121,10 +121,10 @@ dependencies:
121
121
  version: '0'
122
122
  type: :runtime
123
123
  prerelease: false
124
- version_requirements: *70213337939400
124
+ version_requirements: *70354605834040
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: bouncy-castle-java
127
- requirement: &70213337938980 !ruby/object:Gem::Requirement
127
+ requirement: &70354605833560 !ruby/object:Gem::Requirement
128
128
  none: false
129
129
  requirements:
130
130
  - - ! '>='
@@ -132,10 +132,10 @@ dependencies:
132
132
  version: '0'
133
133
  type: :runtime
134
134
  prerelease: false
135
- version_requirements: *70213337938980
135
+ version_requirements: *70354605833560
136
136
  - !ruby/object:Gem::Dependency
137
137
  name: swt
138
- requirement: &70213337938560 !ruby/object:Gem::Requirement
138
+ requirement: &70354605833140 !ruby/object:Gem::Requirement
139
139
  none: false
140
140
  requirements:
141
141
  - - ! '>='
@@ -143,10 +143,10 @@ dependencies:
143
143
  version: '0'
144
144
  type: :runtime
145
145
  prerelease: false
146
- version_requirements: *70213337938560
146
+ version_requirements: *70354605833140
147
147
  - !ruby/object:Gem::Dependency
148
148
  name: plugin_manager
149
- requirement: &70213337966800 !ruby/object:Gem::Requirement
149
+ requirement: &70354605832720 !ruby/object:Gem::Requirement
150
150
  none: false
151
151
  requirements:
152
152
  - - ! '>='
@@ -154,10 +154,10 @@ dependencies:
154
154
  version: '0'
155
155
  type: :runtime
156
156
  prerelease: false
157
- version_requirements: *70213337966800
157
+ version_requirements: *70354605832720
158
158
  - !ruby/object:Gem::Dependency
159
159
  name: redcar-icons
160
- requirement: &70213337966380 !ruby/object:Gem::Requirement
160
+ requirement: &70354605827640 !ruby/object:Gem::Requirement
161
161
  none: false
162
162
  requirements:
163
163
  - - ! '>='
@@ -165,10 +165,10 @@ dependencies:
165
165
  version: '0'
166
166
  type: :runtime
167
167
  prerelease: false
168
- version_requirements: *70213337966380
168
+ version_requirements: *70354605827640
169
169
  - !ruby/object:Gem::Dependency
170
170
  name: redcar-jruby
171
- requirement: &70213337965960 !ruby/object:Gem::Requirement
171
+ requirement: &70354605827160 !ruby/object:Gem::Requirement
172
172
  none: false
173
173
  requirements:
174
174
  - - ! '>='
@@ -176,10 +176,10 @@ dependencies:
176
176
  version: '0'
177
177
  type: :runtime
178
178
  prerelease: false
179
- version_requirements: *70213337965960
179
+ version_requirements: *70354605827160
180
180
  - !ruby/object:Gem::Dependency
181
181
  name: redcar-svnkit
182
- requirement: &70213337965540 !ruby/object:Gem::Requirement
182
+ requirement: &70354605826680 !ruby/object:Gem::Requirement
183
183
  none: false
184
184
  requirements:
185
185
  - - ! '>='
@@ -187,10 +187,10 @@ dependencies:
187
187
  version: '0'
188
188
  type: :runtime
189
189
  prerelease: false
190
- version_requirements: *70213337965540
190
+ version_requirements: *70354605826680
191
191
  - !ruby/object:Gem::Dependency
192
192
  name: redcar-bundles
193
- requirement: &70213337965120 !ruby/object:Gem::Requirement
193
+ requirement: &70354605826140 !ruby/object:Gem::Requirement
194
194
  none: false
195
195
  requirements:
196
196
  - - ! '>='
@@ -198,10 +198,10 @@ dependencies:
198
198
  version: '0'
199
199
  type: :runtime
200
200
  prerelease: false
201
- version_requirements: *70213337965120
201
+ version_requirements: *70354605826140
202
202
  - !ruby/object:Gem::Dependency
203
203
  name: redcar-javamateview
204
- requirement: &70213337964700 !ruby/object:Gem::Requirement
204
+ requirement: &70354605825600 !ruby/object:Gem::Requirement
205
205
  none: false
206
206
  requirements:
207
207
  - - ! '>='
@@ -209,10 +209,10 @@ dependencies:
209
209
  version: '0'
210
210
  type: :runtime
211
211
  prerelease: false
212
- version_requirements: *70213337964700
212
+ version_requirements: *70354605825600
213
213
  - !ruby/object:Gem::Dependency
214
214
  name: cucumber
215
- requirement: &70213337964280 !ruby/object:Gem::Requirement
215
+ requirement: &70354605825080 !ruby/object:Gem::Requirement
216
216
  none: false
217
217
  requirements:
218
218
  - - ! '>='
@@ -220,10 +220,10 @@ dependencies:
220
220
  version: '0'
221
221
  type: :development
222
222
  prerelease: false
223
- version_requirements: *70213337964280
223
+ version_requirements: *70354605825080
224
224
  - !ruby/object:Gem::Dependency
225
225
  name: rspec
226
- requirement: &70213337963860 !ruby/object:Gem::Requirement
226
+ requirement: &70354605824540 !ruby/object:Gem::Requirement
227
227
  none: false
228
228
  requirements:
229
229
  - - ! '>='
@@ -231,10 +231,10 @@ dependencies:
231
231
  version: '0'
232
232
  type: :development
233
233
  prerelease: false
234
- version_requirements: *70213337963860
234
+ version_requirements: *70354605824540
235
235
  - !ruby/object:Gem::Dependency
236
236
  name: watchr
237
- requirement: &70213337963440 !ruby/object:Gem::Requirement
237
+ requirement: &70354605824000 !ruby/object:Gem::Requirement
238
238
  none: false
239
239
  requirements:
240
240
  - - ! '>='
@@ -242,7 +242,7 @@ dependencies:
242
242
  version: '0'
243
243
  type: :development
244
244
  prerelease: false
245
- version_requirements: *70213337963440
245
+ version_requirements: *70354605824000
246
246
  description: ''
247
247
  email:
248
248
  - dan@fluentradical.com
@@ -260,7 +260,6 @@ files:
260
260
  - Rakefile
261
261
  - README.md
262
262
  - bin/redcar
263
- - lib/redcar/installer.rb
264
263
  - lib/redcar/instance_exec.rb
265
264
  - lib/redcar/logger.rb
266
265
  - lib/redcar/plist.rb
@@ -272,7 +271,6 @@ files:
272
271
  - lib/regex_replace.rb
273
272
  - lib/tasks/app-bundle.rake
274
273
  - plugins/application/features/main_menu.feature
275
- - plugins/application/features/navigation_history.feature
276
274
  - plugins/application/features/step_definitions/command_steps.rb
277
275
  - plugins/application/features/step_definitions/dialog_steps.rb
278
276
  - plugins/application/features/step_definitions/filter_list_dialog_steps.rb
@@ -390,6 +388,7 @@ files:
390
388
  - plugins/application_swt/src/com/redcareditor/application_swt/CocoaUIEnhancer.java
391
389
  - plugins/auto_completer/features/auto_complete.feature
392
390
  - plugins/auto_completer/features/step_definitions/auto_complete_steps.rb
391
+ - plugins/auto_completer/features/step_definitions/dependency_steps.rb
393
392
  - plugins/auto_completer/features/support/env.rb
394
393
  - plugins/auto_completer/lib/auto_completer/current_document_completion_source.rb
395
394
  - plugins/auto_completer/lib/auto_completer/document_controller.rb
@@ -497,6 +496,7 @@ files:
497
496
  - plugins/edit_view/features/new_tab.feature
498
497
  - plugins/edit_view/features/soft_tabs.feature
499
498
  - plugins/edit_view/features/sort_lines.feature
499
+ - plugins/edit_view/features/step_definitions/dependency_steps.rb
500
500
  - plugins/edit_view/features/step_definitions/editing_steps.rb
501
501
  - plugins/edit_view/features/step_definitions/grammar_steps.rb
502
502
  - plugins/edit_view/features/step_definitions/key_steps.rb
@@ -534,6 +534,7 @@ files:
534
534
  - plugins/edit_view/lib/edit_view/tab_settings.rb
535
535
  - plugins/edit_view/lib/edit_view.rb
536
536
  - plugins/edit_view/plugin.rb
537
+ - plugins/edit_view/spec/edit_view/commands/align_assignment_command_spec.rb
537
538
  - plugins/edit_view/spec/edit_view/document/indentation_spec.rb
538
539
  - plugins/edit_view/spec/edit_view/document_spec.rb
539
540
  - plugins/edit_view/spec/spec_helper.rb
@@ -595,7 +596,6 @@ files:
595
596
  - plugins/java/plugin.rb
596
597
  - plugins/key_bindings/lib/key_bindings.rb
597
598
  - plugins/key_bindings/plugin.rb
598
- - plugins/key_bindings/spec/spec_helper.rb
599
599
  - plugins/line_tools/features/clear_line.feature
600
600
  - plugins/line_tools/features/kill_line.feature
601
601
  - plugins/line_tools/features/lower_text.feature
@@ -717,6 +717,7 @@ files:
717
717
  - plugins/project_search/spec/spec_helper.rb
718
718
  - plugins/redcar/features/alter_font_size.feature
719
719
  - plugins/redcar/features/goto_line_command.feature
720
+ - plugins/redcar/features/navigation_history.feature
720
721
  - plugins/redcar/features/step_definitions/env.rb
721
722
  - plugins/redcar/features/step_definitions/font_steps.rb
722
723
  - plugins/redcar/features/text_editing.feature
@@ -797,7 +798,6 @@ files:
797
798
  - plugins/scm/lib/scm/scm_commits_mirror.rb
798
799
  - plugins/scm/lib/scm.rb
799
800
  - plugins/scm/plugin.rb
800
- - plugins/scm/spec/spec_helper.rb
801
801
  - plugins/scm_git/lib/scm_git/change.rb
802
802
  - plugins/scm_git/lib/scm_git/commit.rb
803
803
  - plugins/scm_git/lib/scm_git/config_file.rb