redcar-dev 0.12.27dev → 0.13.0dev
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGES +10 -1
- data/lib/redcar.rb +2 -2
- data/plugins/application/lib/application.rb +2 -2
- data/plugins/application/lib/application/dialog.rb +1 -1
- data/plugins/application/lib/application/dialogs/filter_list_dialog.rb +13 -5
- data/plugins/application/lib/application/global_state.rb +21 -0
- data/plugins/application/lib/application/menu/item.rb +16 -7
- data/plugins/application/lib/application/updates.rb +20 -3
- data/plugins/application/spec/application/updates_spec.rb +53 -0
- data/plugins/application_swt/lib/application_swt.rb +1 -1
- data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +35 -10
- data/plugins/application_swt/lib/application_swt/menu.rb +31 -5
- data/plugins/declarations/lib/declarations.rb +31 -65
- data/plugins/declarations/lib/declarations/commands.rb +147 -0
- data/plugins/declarations/lib/declarations/file.rb +1 -1
- data/plugins/{outline_view → declarations}/spec/fixtures/some_project/javascript.js +0 -0
- data/plugins/{outline_view → declarations}/spec/fixtures/some_project/nothing_to_see.rb +0 -0
- data/plugins/{outline_view → declarations}/spec/fixtures/some_project/one_lonely_class.rb +0 -0
- data/plugins/{outline_view → declarations}/spec/fixtures/some_project/similar_names.rb +0 -0
- data/plugins/{outline_view → declarations}/spec/fixtures/some_project/something_fancy.rb +0 -0
- data/plugins/{outline_view → declarations}/spec/fixtures/some_project/trailing_space.rb +0 -0
- data/plugins/edit_view/lib/edit_view.rb +35 -2
- data/plugins/edit_view/lib/edit_view/commands/change_language_command.rb +31 -0
- data/plugins/edit_view/lib/edit_view/commands/language_settings_commands.rb +45 -0
- data/plugins/edit_view/lib/edit_view/document/command.rb +1 -1
- data/plugins/project/lib/project/find_file_dialog.rb +20 -18
- data/plugins/project/lib/project/manager.rb +5 -3
- data/plugins/redcar/plugin.rb +1 -2
- data/plugins/redcar/redcar.rb +34 -42
- data/plugins/scm/lib/scm.rb +1 -1
- data/plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb +2 -2
- data/plugins/syntax_check/lib/syntax_check.rb +2 -2
- metadata +946 -956
- data/plugins/edit_view/lib/edit_view/info_speedbar.rb +0 -98
- data/plugins/outline_view/features/outline_view.feature +0 -79
- data/plugins/outline_view/features/project_outline.feature +0 -23
- data/plugins/outline_view/features/step_definitions/outline_steps.rb +0 -61
- data/plugins/outline_view/lib/outline_view.rb +0 -97
- data/plugins/outline_view/lib/outline_view/commands.rb +0 -19
- data/plugins/outline_view/plugin.rb +0 -10
- data/plugins/outline_view_swt/lib/outline_view_swt.rb +0 -79
- data/plugins/outline_view_swt/plugin.rb +0 -7
| @@ -21,34 +21,26 @@ module Redcar | |
| 21 21 | 
             
                    paths.uniq
         | 
| 22 22 | 
             
                  end
         | 
| 23 23 |  | 
| 24 | 
            -
                   | 
| 25 | 
            -
             | 
| 26 | 
            -
                    duplicates = duplicates(display_paths)
         | 
| 27 | 
            -
                    display_paths.each_with_index do |dp, i|
         | 
| 28 | 
            -
                      if duplicates.include? dp
         | 
| 29 | 
            -
                        display_paths[i] = display_path(full_paths[i], project.path.split('/')[0..-2].join('/'))
         | 
| 30 | 
            -
                      end
         | 
| 31 | 
            -
                    end
         | 
| 32 | 
            -
                  end
         | 
| 33 | 
            -
             | 
| 34 | 
            -
                  def update_list(filter)
         | 
| 35 | 
            -
                    paths = paths_for filter
         | 
| 36 | 
            -
                    @last_list = paths
         | 
| 37 | 
            -
                    full_paths = paths
         | 
| 24 | 
            +
                  def update_list(filter) 
         | 
| 25 | 
            +
                    full_paths = paths_for(filter)
         | 
| 38 26 | 
             
                    display_paths = full_paths.map { |path| display_path(path) }
         | 
| 39 27 | 
             
                    if display_paths.uniq.length < full_paths.length
         | 
| 40 28 | 
             
                      display_paths = expand_duplicates(display_paths, full_paths)
         | 
| 41 29 | 
             
                    end
         | 
| 42 | 
            -
                     | 
| 30 | 
            +
                    result = []
         | 
| 31 | 
            +
                    display_paths.zip(full_paths) do |display_path, full_path|
         | 
| 32 | 
            +
                      result << {:name => display_path, :path => full_path, :icon => :file}
         | 
| 33 | 
            +
                    end
         | 
| 34 | 
            +
                    result
         | 
| 43 35 | 
             
                  end
         | 
| 44 36 |  | 
| 45 | 
            -
                  def selected( | 
| 46 | 
            -
                    if  | 
| 37 | 
            +
                  def selected(item, ix)
         | 
| 38 | 
            +
                    if item[:path] and File.exist?(item[:path])
         | 
| 47 39 | 
             
                      close
         | 
| 48 40 | 
             
                      if win = Redcar.app.focussed_window and tab = win.focussed_notebook_tab and doc = tab.document
         | 
| 49 41 | 
             
                        Redcar.app.navigation_history.save(doc)
         | 
| 50 42 | 
             
                      end
         | 
| 51 | 
            -
                      OpenFileCommand.new( | 
| 43 | 
            +
                      OpenFileCommand.new(item[:path]).run
         | 
| 52 44 | 
             
                      cur_doc = Redcar.app.focussed_window.focussed_notebook_tab.document
         | 
| 53 45 | 
             
                      Redcar.app.navigation_history.save(cur_doc) if cur_doc
         | 
| 54 46 | 
             
                    end
         | 
| @@ -66,6 +58,16 @@ module Redcar | |
| 66 58 | 
             
                    Set[*enum.select {|k| enum.index(k) != enum.rindex(k) }]
         | 
| 67 59 | 
             
                  end
         | 
| 68 60 |  | 
| 61 | 
            +
                  # search out and expand duplicates in shortened paths to their full length
         | 
| 62 | 
            +
                  def expand_duplicates(display_paths, full_paths)
         | 
| 63 | 
            +
                    duplicates = duplicates(display_paths)
         | 
| 64 | 
            +
                    display_paths.each_with_index do |dp, i|
         | 
| 65 | 
            +
                      if duplicates.include? dp
         | 
| 66 | 
            +
                        display_paths[i] = display_path(full_paths[i], project.path.split('/')[0..-2].join('/'))
         | 
| 67 | 
            +
                      end
         | 
| 68 | 
            +
                    end
         | 
| 69 | 
            +
                  end
         | 
| 70 | 
            +
             | 
| 69 71 | 
             
                  def display_path(path, first_remove_this_prefix = nil)
         | 
| 70 72 | 
             
                    n = -3
         | 
| 71 73 | 
             
                    if first_remove_this_prefix and path.index(first_remove_this_prefix) == 0
         | 
| @@ -170,6 +170,7 @@ module Redcar | |
| 170 170 | 
             
                    tab.edit_view.document.mirror = mirror
         | 
| 171 171 | 
             
                    tab.edit_view.reset_undo
         | 
| 172 172 | 
             
                    tab.focus
         | 
| 173 | 
            +
                    tab
         | 
| 173 174 | 
             
                  end
         | 
| 174 175 |  | 
| 175 176 | 
             
                  def self.file_too_large?(path)
         | 
| @@ -197,7 +198,7 @@ module Redcar | |
| 197 198 | 
             
                  def self.open_file(path, adapter=Adapters::Local.new)
         | 
| 198 199 | 
             
                    if tab = find_open_file_tab(path)
         | 
| 199 200 | 
             
                      tab.focus
         | 
| 200 | 
            -
                      return
         | 
| 201 | 
            +
                      return tab
         | 
| 201 202 | 
             
                    end
         | 
| 202 203 | 
             
                    if project = find_projects_containing_path(path).first
         | 
| 203 204 | 
             
                      window = project.window
         | 
| @@ -205,8 +206,9 @@ module Redcar | |
| 205 206 | 
             
                      window = windows_without_projects.first || Redcar.app.new_window
         | 
| 206 207 | 
             
                      Project::Recent.store_path(path)
         | 
| 207 208 | 
             
                    end
         | 
| 208 | 
            -
                    open_file_in_window(path, window, adapter)
         | 
| 209 | 
            +
                    tab = open_file_in_window(path, window, adapter)
         | 
| 209 210 | 
             
                    window.focus
         | 
| 211 | 
            +
                    tab
         | 
| 210 212 | 
             
                  end
         | 
| 211 213 |  | 
| 212 214 | 
             
                  def self.pop_first_line_option(args)
         | 
| @@ -414,7 +416,7 @@ module Redcar | |
| 414 416 | 
             
                          item "Find File", Project::FindFileCommand
         | 
| 415 417 | 
             
                          # item "Refresh Directory", Project::RefreshDirectoryCommand
         | 
| 416 418 | 
             
                        end
         | 
| 417 | 
            -
                        item "Reveal Open File in Tree", :command => Project::ToggleRevealInProject, :type => :check, : | 
| 419 | 
            +
                        item "Reveal Open File in Tree", :command => Project::ToggleRevealInProject, :type => :check, :checked => lambda { Project::Manager.reveal_files? }
         | 
| 418 420 | 
             
                      end
         | 
| 419 421 | 
             
                    end
         | 
| 420 422 | 
             
                  end
         | 
    
        data/plugins/redcar/plugin.rb
    CHANGED
    
    
    
        data/plugins/redcar/redcar.rb
    CHANGED
    
    | @@ -41,61 +41,61 @@ module Redcar | |
| 41 41 | 
             
                  end
         | 
| 42 42 | 
             
                end
         | 
| 43 43 |  | 
| 44 | 
            -
                class GenerateWindowsMenu | 
| 45 | 
            -
                  def  | 
| 46 | 
            -
                    @builder = builder
         | 
| 47 | 
            -
                  end
         | 
| 48 | 
            -
             | 
| 49 | 
            -
                  def execute
         | 
| 44 | 
            +
                class GenerateWindowsMenu
         | 
| 45 | 
            +
                  def self.on(builder)
         | 
| 50 46 | 
             
                    window = Redcar.app.focussed_window
         | 
| 51 47 | 
             
                    Redcar.app.windows.each do |win|
         | 
| 52 | 
            -
                       | 
| 48 | 
            +
                      builder.item(win.title, :type => :radio, :checked => (win == window)) do
         | 
| 53 49 | 
             
                        Application::FocusWindowCommand.new(win).run
         | 
| 54 50 | 
             
                      end
         | 
| 55 51 | 
             
                    end
         | 
| 56 52 | 
             
                  end
         | 
| 57 53 | 
             
                end
         | 
| 58 54 |  | 
| 59 | 
            -
                class GenerateTabsMenu | 
| 60 | 
            -
                  def  | 
| 61 | 
            -
                    @builder = builder
         | 
| 62 | 
            -
                  end
         | 
| 63 | 
            -
             | 
| 64 | 
            -
                  def trim(title)
         | 
| 55 | 
            +
                class GenerateTabsMenu
         | 
| 56 | 
            +
                  def self.trim(title)
         | 
| 65 57 | 
             
                    title = title[0,13]+'...' if title.length > 13
         | 
| 66 58 | 
             
                    title
         | 
| 67 59 | 
             
                  end
         | 
| 68 60 |  | 
| 69 | 
            -
                  def  | 
| 61 | 
            +
                  def self.on(builder)
         | 
| 70 62 | 
             
                    if win = Redcar.app.focussed_window and
         | 
| 71 63 | 
             
                      book = win.focussed_notebook and book.tabs.any?
         | 
| 72 64 | 
             
                      focussed_tab = book.focussed_tab
         | 
| 73 | 
            -
                       | 
| 74 | 
            -
                       | 
| 65 | 
            +
                      builder.separator
         | 
| 66 | 
            +
                      builder.item "Focussed Notebook", ShowTitle
         | 
| 75 67 | 
             
                      book.tabs.each_with_index do |tab,i|
         | 
| 76 68 | 
             
                        num = i + 1
         | 
| 77 69 | 
             
                        if num < 10
         | 
| 78 70 | 
             
                          @builder.item("Tab #{num}: #{trim(tab.title)}",
         | 
| 79 71 | 
             
                            :type => :radio,
         | 
| 80 | 
            -
                            : | 
| 72 | 
            +
                            :checked => (tab == focussed_tab),
         | 
| 81 73 | 
             
                            :command => Redcar::Application.const_get("SelectTab#{num}Command")
         | 
| 82 74 | 
             
                          )
         | 
| 83 75 | 
             
                        else
         | 
| 84 76 | 
             
                          @builder.item("Tab #{num}: #{trim(tab.title)}",
         | 
| 85 | 
            -
                            :type | 
| 86 | 
            -
                            : | 
| 77 | 
            +
                            :type    => :radio,
         | 
| 78 | 
            +
                            :checked => (tab == focussed_tab)) { tab.focus }
         | 
| 87 79 | 
             
                        end
         | 
| 88 80 | 
             
                      end
         | 
| 89 81 | 
             
                      if book = win.nonfocussed_notebook and book.tabs.any?
         | 
| 90 | 
            -
                         | 
| 91 | 
            -
                         | 
| 82 | 
            +
                        builder.separator
         | 
| 83 | 
            +
                        builder.item "Nonfocussed Notebook", ShowTitle
         | 
| 92 84 | 
             
                        book.tabs.each_with_index do |tab,i|
         | 
| 93 | 
            -
                           | 
| 85 | 
            +
                          builder.item("Tab #{i+1}: #{trim(tab.title)}") {tab.focus}
         | 
| 94 86 | 
             
                        end
         | 
| 95 87 | 
             
                      end
         | 
| 96 88 | 
             
                    end
         | 
| 97 89 | 
             
                  end
         | 
| 98 90 | 
             
                end
         | 
| 91 | 
            +
                
         | 
| 92 | 
            +
                class GenerateGrammarsMenu
         | 
| 93 | 
            +
                  def self.on(builder)
         | 
| 94 | 
            +
                    builder.item "Ruby", AboutCommand
         | 
| 95 | 
            +
                    builder.item "Java", AboutCommand
         | 
| 96 | 
            +
                    builder.item "Python", AboutCommand
         | 
| 97 | 
            +
                  end
         | 
| 98 | 
            +
                end
         | 
| 99 99 |  | 
| 100 100 | 
             
                class AboutCommand < Command
         | 
| 101 101 | 
             
                  def execute
         | 
| @@ -635,7 +635,6 @@ Redcar.environment: #{Redcar.environment} | |
| 635 635 |  | 
| 636 636 | 
             
                    #link "Cmd+Return",   MoveNextLineCommand
         | 
| 637 637 |  | 
| 638 | 
            -
                    link "Ctrl+Shift+E", EditView::InfoSpeedbarCommand
         | 
| 639 638 | 
             
                    link "Cmd+Z",        UndoCommand
         | 
| 640 639 | 
             
                    link "Cmd+Shift+Z",  RedoCommand
         | 
| 641 640 | 
             
                    link "Cmd+X",        CutCommand
         | 
| @@ -679,6 +678,7 @@ Redcar.environment: #{Redcar.environment} | |
| 679 678 | 
             
                    link "Ctrl+G",       EditView::OppositeCaseTextCommand
         | 
| 680 679 | 
             
                    link "Ctrl+_",       EditView::CamelSnakePascalRotateTextCommand
         | 
| 681 680 | 
             
                    link "Ctrl+=",       EditView::AlignAssignmentCommand
         | 
| 681 | 
            +
                    link "Cmd+Alt+Ctrl+L", EditView::ChangeLanguageCommand
         | 
| 682 682 | 
             
                    link "Ctrl+Shift+^", SortLinesCommand
         | 
| 683 683 |  | 
| 684 684 | 
             
                    link "Cmd+T",           Project::FindFileCommand
         | 
| @@ -734,7 +734,6 @@ Redcar.environment: #{Redcar.environment} | |
| 734 734 |  | 
| 735 735 | 
             
                    link "Ctrl+Enter",   MoveNextLineCommand
         | 
| 736 736 |  | 
| 737 | 
            -
                    link "Ctrl+Shift+E", EditView::InfoSpeedbarCommand
         | 
| 738 737 | 
             
                    link "Ctrl+Z",       UndoCommand
         | 
| 739 738 | 
             
                    link "Ctrl+Y",       RedoCommand
         | 
| 740 739 | 
             
                    link "Ctrl+X",       CutCommand
         | 
| @@ -772,6 +771,7 @@ Redcar.environment: #{Redcar.environment} | |
| 772 771 | 
             
                    link "Ctrl+Alt+Shift+U", EditView::OppositeCaseTextCommand
         | 
| 773 772 | 
             
                    link "Ctrl+_",           EditView::CamelSnakePascalRotateTextCommand
         | 
| 774 773 | 
             
                    link "Ctrl+=",           EditView::AlignAssignmentCommand
         | 
| 774 | 
            +
                    link "Ctrl+Alt+Shift+L", EditView::ChangeLanguageCommand
         | 
| 775 775 | 
             
                    link "Ctrl+Shift+^",     SortLinesCommand
         | 
| 776 776 |  | 
| 777 777 | 
             
                    link "Ctrl+T",           Project::FindFileCommand
         | 
| @@ -853,16 +853,12 @@ Redcar.environment: #{Redcar.environment} | |
| 853 853 |  | 
| 854 854 | 
             
                    sub_menu "Edit", :priority => 5 do
         | 
| 855 855 | 
             
                      group(:priority => :first) do
         | 
| 856 | 
            -
                        item "Tab Info",  EditView::InfoSpeedbarCommand
         | 
| 857 | 
            -
                      end
         | 
| 858 | 
            -
                      group(:priority => 10) do
         | 
| 859 | 
            -
                        separator
         | 
| 860 856 | 
             
                        item "Undo", UndoCommand
         | 
| 861 857 | 
             
                        item "Redo", RedoCommand
         | 
| 858 | 
            +
                        separator
         | 
| 862 859 | 
             
                      end
         | 
| 863 860 |  | 
| 864 861 | 
             
                      group(:priority => 15) do
         | 
| 865 | 
            -
                        separator
         | 
| 866 862 | 
             
                        item "Cut", CutCommand
         | 
| 867 863 | 
             
                        item "Copy", CopyCommand
         | 
| 868 864 | 
             
                        item "Paste", PasteCommand
         | 
| @@ -870,19 +866,17 @@ Redcar.environment: #{Redcar.environment} | |
| 870 866 | 
             
                          item "Duplicate Region", DuplicateCommand
         | 
| 871 867 | 
             
                          item "Sort Lines in Region", SortLinesCommand
         | 
| 872 868 | 
             
                        end
         | 
| 869 | 
            +
                        separator
         | 
| 873 870 | 
             
                      end
         | 
| 874 871 |  | 
| 875 872 | 
             
                      group(:priority => 30) do
         | 
| 876 | 
            -
                        separator
         | 
| 877 873 | 
             
                        sub_menu "Selection" do
         | 
| 878 874 | 
             
                          item "All", SelectAllCommand
         | 
| 879 875 | 
             
                          item "Line", SelectLineCommand
         | 
| 880 876 | 
             
                          item "Current Word", SelectWordCommand
         | 
| 881 877 | 
             
                          item "Toggle Block Selection", ToggleBlockSelectionCommand
         | 
| 882 878 | 
             
                        end
         | 
| 883 | 
            -
             | 
| 884 | 
            -
             | 
| 885 | 
            -
                      group(:priority => 40) do
         | 
| 879 | 
            +
                        
         | 
| 886 880 | 
             
                        sub_menu "Document Navigation" do
         | 
| 887 881 | 
             
                          item "Goto Line", GotoLineCommand
         | 
| 888 882 | 
             
                          item "Top",     MoveTopCommand
         | 
| @@ -909,9 +903,7 @@ Redcar.environment: #{Redcar.environment} | |
| 909 903 | 
             
                          item "Backward Navigation", BackwardNavigationCommand
         | 
| 910 904 | 
             
                          item "Forward Navigation", ForwardNavigationCommand
         | 
| 911 905 | 
             
                        end
         | 
| 912 | 
            -
             | 
| 913 | 
            -
             | 
| 914 | 
            -
                      group(:priority => 50) do
         | 
| 906 | 
            +
                        
         | 
| 915 907 | 
             
                        sub_menu "Formatting" do
         | 
| 916 908 | 
             
                          item "Increase Indent", IncreaseIndentCommand
         | 
| 917 909 | 
             
                          item "Decrease Indent", DecreaseIndentCommand
         | 
| @@ -938,7 +930,7 @@ Redcar.environment: #{Redcar.environment} | |
| 938 930 | 
             
                      end
         | 
| 939 931 | 
             
                      group(:priority => 10) do
         | 
| 940 932 | 
             
                        separator
         | 
| 941 | 
            -
                        item "Toggle Fullscreen", :command => Application::ToggleFullscreen, :type => :check, : | 
| 933 | 
            +
                        item "Toggle Fullscreen", :command => Application::ToggleFullscreen, :type => :check, :checked => window ? window.fullscreen : false
         | 
| 942 934 | 
             
                      end
         | 
| 943 935 | 
             
                      group(:priority => 15) do
         | 
| 944 936 | 
             
                        separator
         | 
| @@ -952,7 +944,7 @@ Redcar.environment: #{Redcar.environment} | |
| 952 944 | 
             
                          item "Next Tree", Application::SwitchTreeDownCommand
         | 
| 953 945 | 
             
                        end
         | 
| 954 946 | 
             
                        lazy_sub_menu "Windows" do
         | 
| 955 | 
            -
                          GenerateWindowsMenu. | 
| 947 | 
            +
                          GenerateWindowsMenu.on(self)
         | 
| 956 948 | 
             
                        end
         | 
| 957 949 | 
             
                        sub_menu "Notebooks" do
         | 
| 958 950 | 
             
                          item "New Notebook", Application::OpenNewNotebookCommand
         | 
| @@ -979,9 +971,9 @@ Redcar.environment: #{Redcar.environment} | |
| 979 971 | 
             
                      end
         | 
| 980 972 | 
             
                      group(:priority => :last) do
         | 
| 981 973 | 
             
                        separator
         | 
| 982 | 
            -
                        item "Show Toolbar", :command => Application::ToggleToolbar, :type => :check, : | 
| 983 | 
            -
                        item "Show Invisibles", :command => ToggleInvisibles, :type => :check, : | 
| 984 | 
            -
                        item "Show Line Numbers", :command => ToggleLineNumbers, :type => :check, : | 
| 974 | 
            +
                        item "Show Toolbar", :command => Application::ToggleToolbar, :type => :check, :checked => lambda { Redcar.app.show_toolbar? }
         | 
| 975 | 
            +
                        item "Show Invisibles", :command => ToggleInvisibles, :type => :check, :checked => lambda { EditView.show_invisibles? }
         | 
| 976 | 
            +
                        item "Show Line Numbers", :command => ToggleLineNumbers, :type => :check, :checked => lambda { EditView.show_line_numbers? }
         | 
| 985 977 | 
             
                      end
         | 
| 986 978 | 
             
                    end
         | 
| 987 979 | 
             
                    sub_menu "Bundles", :priority => 45 do
         | 
| @@ -1002,7 +994,7 @@ Redcar.environment: #{Redcar.environment} | |
| 1002 994 | 
             
                        separator
         | 
| 1003 995 | 
             
                        item "Check for Updates", :command => Application::ToggleCheckForUpdatesCommand, 
         | 
| 1004 996 | 
             
                                                  :type => :check, 
         | 
| 1005 | 
            -
                                                  : | 
| 997 | 
            +
                                                  :checked => lambda { Application::Updates.check_for_updates? }
         | 
| 1006 998 | 
             
                        item "Update Available",  Application::OpenUpdateCommand
         | 
| 1007 999 | 
             
                      end
         | 
| 1008 1000 | 
             
                    end
         | 
    
        data/plugins/scm/lib/scm.rb
    CHANGED
    
    
| @@ -30,8 +30,8 @@ module Redcar | |
| 30 30 | 
             
                  Menu::Builder.build do
         | 
| 31 31 | 
             
                    sub_menu "Plugins" do
         | 
| 32 32 | 
             
                      sub_menu "Strip Trailing Spaces", :priority => 195 do
         | 
| 33 | 
            -
                        item "Enabled", | 
| 34 | 
            -
                        item "Strip Blank Lines", :command => ToggleStripBlankLines, | 
| 33 | 
            +
                        item "Enabled",           :command => ToggleStripTrailingSpaces, :type => :check, :checked => lambda { StripTrailingSpaces.enabled? }
         | 
| 34 | 
            +
                        item "Strip Blank Lines", :command => ToggleStripBlankLines,     :type => :check, :checked => lambda { StripTrailingSpaces.strip_blank_lines? }
         | 
| 35 35 | 
             
                      end
         | 
| 36 36 | 
             
                    end
         | 
| 37 37 | 
             
                  end
         | 
| @@ -13,11 +13,11 @@ module Redcar | |
| 13 13 | 
             
                  Redcar::Menu::Builder.build do
         | 
| 14 14 | 
             
                    sub_menu "Plugins" do
         | 
| 15 15 | 
             
                      lazy_sub_menu "Syntax Checking" do
         | 
| 16 | 
            -
                        item "Enabled", :type => :check, : | 
| 16 | 
            +
                        item "Enabled", :type => :check, :checked => lambda { SyntaxCheck.enabled? }, :command => ToggleSyntaxChecking
         | 
| 17 17 | 
             
                        separator
         | 
| 18 18 | 
             
                        Checker.checkers.each do |checker|
         | 
| 19 19 | 
             
                          grammar = checker[0]
         | 
| 20 | 
            -
                          item "#{grammar}", :type => :check, : | 
| 20 | 
            +
                          item "#{grammar}", :type => :check, :checked => lambda { SyntaxCheck.check_type?(grammar) }, :command => ToggleGrammarChecking, :value => grammar
         | 
| 21 21 | 
             
                        end
         | 
| 22 22 | 
             
                      end
         | 
| 23 23 | 
             
                    end
         | 
    
        metadata
    CHANGED
    
    | @@ -1,974 +1,964 @@ | |
| 1 | 
            -
            --- !ruby/object:Gem::Specification | 
| 1 | 
            +
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: redcar-dev
         | 
| 3 | 
            -
            version: !ruby/object:Gem::Version | 
| 4 | 
            -
               | 
| 5 | 
            -
               | 
| 3 | 
            +
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            +
              version: 0.13.0dev
         | 
| 5 | 
            +
              prerelease: 6
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 | 
            -
            authors: | 
| 8 | 
            -
             | 
| 7 | 
            +
            authors:
         | 
| 8 | 
            +
            - Daniel Lucraft
         | 
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
             | 
| 13 | 
            -
             | 
| 14 | 
            -
             | 
| 15 | 
            -
               | 
| 16 | 
            -
             | 
| 17 | 
            -
                 | 
| 18 | 
            -
                 | 
| 19 | 
            -
             | 
| 20 | 
            -
                   | 
| 21 | 
            -
                     | 
| 22 | 
            -
             | 
| 23 | 
            -
             | 
| 24 | 
            -
             | 
| 25 | 
            -
             | 
| 26 | 
            -
               | 
| 27 | 
            -
             | 
| 28 | 
            -
                 | 
| 29 | 
            -
                 | 
| 30 | 
            -
             | 
| 31 | 
            -
                   | 
| 32 | 
            -
                     | 
| 33 | 
            -
             | 
| 34 | 
            -
             | 
| 35 | 
            -
             | 
| 36 | 
            -
             | 
| 37 | 
            -
               | 
| 38 | 
            -
             | 
| 39 | 
            -
                 | 
| 40 | 
            -
                 | 
| 41 | 
            -
             | 
| 42 | 
            -
                   | 
| 43 | 
            -
                     | 
| 44 | 
            -
             | 
| 45 | 
            -
             | 
| 46 | 
            -
             | 
| 47 | 
            -
             | 
| 48 | 
            -
               | 
| 49 | 
            -
             | 
| 50 | 
            -
                 | 
| 51 | 
            -
                 | 
| 52 | 
            -
             | 
| 53 | 
            -
                   | 
| 54 | 
            -
                     | 
| 55 | 
            -
             | 
| 56 | 
            -
             | 
| 57 | 
            -
             | 
| 58 | 
            -
             | 
| 59 | 
            -
               | 
| 60 | 
            -
             | 
| 61 | 
            -
                 | 
| 62 | 
            -
                 | 
| 63 | 
            -
             | 
| 64 | 
            -
                   | 
| 65 | 
            -
                     | 
| 66 | 
            -
             | 
| 67 | 
            -
             | 
| 68 | 
            -
             | 
| 69 | 
            -
             | 
| 70 | 
            -
               | 
| 71 | 
            -
             | 
| 72 | 
            -
                 | 
| 73 | 
            -
                 | 
| 74 | 
            -
             | 
| 75 | 
            -
                   | 
| 76 | 
            -
                     | 
| 77 | 
            -
             | 
| 78 | 
            -
             | 
| 79 | 
            -
             | 
| 80 | 
            -
             | 
| 81 | 
            -
               | 
| 82 | 
            -
             | 
| 83 | 
            -
                 | 
| 84 | 
            -
                 | 
| 85 | 
            -
             | 
| 86 | 
            -
                   | 
| 87 | 
            -
                     | 
| 88 | 
            -
             | 
| 89 | 
            -
             | 
| 90 | 
            -
             | 
| 91 | 
            -
             | 
| 92 | 
            -
               | 
| 93 | 
            -
             | 
| 94 | 
            -
                 | 
| 95 | 
            -
                 | 
| 96 | 
            -
             | 
| 97 | 
            -
                   | 
| 98 | 
            -
                     | 
| 99 | 
            -
             | 
| 100 | 
            -
             | 
| 101 | 
            -
             | 
| 102 | 
            -
             | 
| 103 | 
            -
               | 
| 104 | 
            -
             | 
| 105 | 
            -
                 | 
| 106 | 
            -
                 | 
| 107 | 
            -
             | 
| 108 | 
            -
                   | 
| 109 | 
            -
                     | 
| 110 | 
            -
             | 
| 111 | 
            -
             | 
| 112 | 
            -
             | 
| 113 | 
            -
             | 
| 114 | 
            -
               | 
| 115 | 
            -
             | 
| 116 | 
            -
                 | 
| 117 | 
            -
                 | 
| 118 | 
            -
             | 
| 119 | 
            -
                   | 
| 120 | 
            -
                     | 
| 121 | 
            -
             | 
| 122 | 
            -
             | 
| 123 | 
            -
             | 
| 124 | 
            -
             | 
| 125 | 
            -
               | 
| 126 | 
            -
             | 
| 127 | 
            -
                 | 
| 128 | 
            -
                 | 
| 129 | 
            -
             | 
| 130 | 
            -
                   | 
| 131 | 
            -
                     | 
| 132 | 
            -
             | 
| 133 | 
            -
             | 
| 134 | 
            -
             | 
| 135 | 
            -
             | 
| 136 | 
            -
               | 
| 137 | 
            -
             | 
| 138 | 
            -
                 | 
| 139 | 
            -
                 | 
| 140 | 
            -
             | 
| 141 | 
            -
                   | 
| 142 | 
            -
                     | 
| 143 | 
            -
             | 
| 144 | 
            -
             | 
| 145 | 
            -
             | 
| 146 | 
            -
             | 
| 147 | 
            -
               | 
| 148 | 
            -
             | 
| 149 | 
            -
                 | 
| 150 | 
            -
                 | 
| 151 | 
            -
             | 
| 152 | 
            -
                   | 
| 153 | 
            -
                     | 
| 154 | 
            -
             | 
| 155 | 
            -
             | 
| 156 | 
            -
             | 
| 157 | 
            -
             | 
| 158 | 
            -
               | 
| 159 | 
            -
             | 
| 160 | 
            -
                 | 
| 161 | 
            -
                 | 
| 162 | 
            -
             | 
| 163 | 
            -
                   | 
| 164 | 
            -
                     | 
| 165 | 
            -
             | 
| 166 | 
            -
             | 
| 167 | 
            -
             | 
| 168 | 
            -
             | 
| 169 | 
            -
               | 
| 170 | 
            -
             | 
| 171 | 
            -
                 | 
| 172 | 
            -
                 | 
| 173 | 
            -
             | 
| 174 | 
            -
                   | 
| 175 | 
            -
                     | 
| 176 | 
            -
             | 
| 177 | 
            -
             | 
| 178 | 
            -
             | 
| 179 | 
            -
             | 
| 180 | 
            -
               | 
| 181 | 
            -
             | 
| 182 | 
            -
                 | 
| 183 | 
            -
                 | 
| 184 | 
            -
             | 
| 185 | 
            -
                   | 
| 186 | 
            -
                     | 
| 187 | 
            -
             | 
| 188 | 
            -
             | 
| 189 | 
            -
             | 
| 190 | 
            -
             | 
| 191 | 
            -
               | 
| 192 | 
            -
             | 
| 193 | 
            -
                 | 
| 194 | 
            -
                 | 
| 195 | 
            -
             | 
| 196 | 
            -
                   | 
| 197 | 
            -
                     | 
| 198 | 
            -
             | 
| 199 | 
            -
             | 
| 200 | 
            -
             | 
| 201 | 
            -
             | 
| 202 | 
            -
               | 
| 203 | 
            -
             | 
| 204 | 
            -
                 | 
| 205 | 
            -
                 | 
| 206 | 
            -
             | 
| 207 | 
            -
                   | 
| 208 | 
            -
                     | 
| 209 | 
            -
             | 
| 210 | 
            -
             | 
| 211 | 
            -
             | 
| 212 | 
            -
             | 
| 213 | 
            -
               | 
| 214 | 
            -
             | 
| 215 | 
            -
                 | 
| 216 | 
            -
                 | 
| 217 | 
            -
             | 
| 218 | 
            -
                   | 
| 219 | 
            -
                     | 
| 220 | 
            -
             | 
| 221 | 
            -
             | 
| 222 | 
            -
             | 
| 223 | 
            -
             | 
| 224 | 
            -
               | 
| 225 | 
            -
             | 
| 226 | 
            -
                 | 
| 227 | 
            -
                 | 
| 228 | 
            -
             | 
| 229 | 
            -
                   | 
| 230 | 
            -
                     | 
| 231 | 
            -
             | 
| 232 | 
            -
             | 
| 233 | 
            -
             | 
| 234 | 
            -
             | 
| 235 | 
            -
             | 
| 236 | 
            -
             | 
| 237 | 
            -
             | 
| 238 | 
            -
             | 
| 239 | 
            -
              - redcar
         | 
| 12 | 
            +
            date: 2012-01-08 00:00:00.000000000Z
         | 
| 13 | 
            +
            dependencies:
         | 
| 14 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 15 | 
            +
              name: git
         | 
| 16 | 
            +
              requirement: &70340102495900 !ruby/object:Gem::Requirement
         | 
| 17 | 
            +
                none: false
         | 
| 18 | 
            +
                requirements:
         | 
| 19 | 
            +
                - - ! '>='
         | 
| 20 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 21 | 
            +
                    version: '0'
         | 
| 22 | 
            +
              type: :runtime
         | 
| 23 | 
            +
              prerelease: false
         | 
| 24 | 
            +
              version_requirements: *70340102495900
         | 
| 25 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 26 | 
            +
              name: spoon
         | 
| 27 | 
            +
              requirement: &70340102495480 !ruby/object:Gem::Requirement
         | 
| 28 | 
            +
                none: false
         | 
| 29 | 
            +
                requirements:
         | 
| 30 | 
            +
                - - ! '>='
         | 
| 31 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 32 | 
            +
                    version: '0'
         | 
| 33 | 
            +
              type: :runtime
         | 
| 34 | 
            +
              prerelease: false
         | 
| 35 | 
            +
              version_requirements: *70340102495480
         | 
| 36 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 37 | 
            +
              name: lucene
         | 
| 38 | 
            +
              requirement: &70340102494980 !ruby/object:Gem::Requirement
         | 
| 39 | 
            +
                none: false
         | 
| 40 | 
            +
                requirements:
         | 
| 41 | 
            +
                - - ~>
         | 
| 42 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 43 | 
            +
                    version: 0.5.0.beta.1
         | 
| 44 | 
            +
              type: :runtime
         | 
| 45 | 
            +
              prerelease: false
         | 
| 46 | 
            +
              version_requirements: *70340102494980
         | 
| 47 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 48 | 
            +
              name: bundler
         | 
| 49 | 
            +
              requirement: &70340102494560 !ruby/object:Gem::Requirement
         | 
| 50 | 
            +
                none: false
         | 
| 51 | 
            +
                requirements:
         | 
| 52 | 
            +
                - - ! '>='
         | 
| 53 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 54 | 
            +
                    version: '0'
         | 
| 55 | 
            +
              type: :runtime
         | 
| 56 | 
            +
              prerelease: false
         | 
| 57 | 
            +
              version_requirements: *70340102494560
         | 
| 58 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 59 | 
            +
              name: net-ssh
         | 
| 60 | 
            +
              requirement: &70340102494100 !ruby/object:Gem::Requirement
         | 
| 61 | 
            +
                none: false
         | 
| 62 | 
            +
                requirements:
         | 
| 63 | 
            +
                - - ! '>='
         | 
| 64 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 65 | 
            +
                    version: '0'
         | 
| 66 | 
            +
              type: :runtime
         | 
| 67 | 
            +
              prerelease: false
         | 
| 68 | 
            +
              version_requirements: *70340102494100
         | 
| 69 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 70 | 
            +
              name: net-sftp
         | 
| 71 | 
            +
              requirement: &70340102493680 !ruby/object:Gem::Requirement
         | 
| 72 | 
            +
                none: false
         | 
| 73 | 
            +
                requirements:
         | 
| 74 | 
            +
                - - ! '>='
         | 
| 75 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 76 | 
            +
                    version: '0'
         | 
| 77 | 
            +
              type: :runtime
         | 
| 78 | 
            +
              prerelease: false
         | 
| 79 | 
            +
              version_requirements: *70340102493680
         | 
| 80 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 81 | 
            +
              name: net-ftp-list
         | 
| 82 | 
            +
              requirement: &70340102493260 !ruby/object:Gem::Requirement
         | 
| 83 | 
            +
                none: false
         | 
| 84 | 
            +
                requirements:
         | 
| 85 | 
            +
                - - ! '>='
         | 
| 86 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 87 | 
            +
                    version: '0'
         | 
| 88 | 
            +
              type: :runtime
         | 
| 89 | 
            +
              prerelease: false
         | 
| 90 | 
            +
              version_requirements: *70340102493260
         | 
| 91 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 92 | 
            +
              name: jruby-openssl
         | 
| 93 | 
            +
              requirement: &70340107220620 !ruby/object:Gem::Requirement
         | 
| 94 | 
            +
                none: false
         | 
| 95 | 
            +
                requirements:
         | 
| 96 | 
            +
                - - ! '>='
         | 
| 97 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 98 | 
            +
                    version: '0'
         | 
| 99 | 
            +
              type: :runtime
         | 
| 100 | 
            +
              prerelease: false
         | 
| 101 | 
            +
              version_requirements: *70340107220620
         | 
| 102 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 103 | 
            +
              name: ruby-blockcache
         | 
| 104 | 
            +
              requirement: &70340107220200 !ruby/object:Gem::Requirement
         | 
| 105 | 
            +
                none: false
         | 
| 106 | 
            +
                requirements:
         | 
| 107 | 
            +
                - - ! '>='
         | 
| 108 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 109 | 
            +
                    version: '0'
         | 
| 110 | 
            +
              type: :runtime
         | 
| 111 | 
            +
              prerelease: false
         | 
| 112 | 
            +
              version_requirements: *70340107220200
         | 
| 113 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 114 | 
            +
              name: bouncy-castle-java
         | 
| 115 | 
            +
              requirement: &70340107219780 !ruby/object:Gem::Requirement
         | 
| 116 | 
            +
                none: false
         | 
| 117 | 
            +
                requirements:
         | 
| 118 | 
            +
                - - ! '>='
         | 
| 119 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 120 | 
            +
                    version: '0'
         | 
| 121 | 
            +
              type: :runtime
         | 
| 122 | 
            +
              prerelease: false
         | 
| 123 | 
            +
              version_requirements: *70340107219780
         | 
| 124 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 125 | 
            +
              name: swt
         | 
| 126 | 
            +
              requirement: &70340107219360 !ruby/object:Gem::Requirement
         | 
| 127 | 
            +
                none: false
         | 
| 128 | 
            +
                requirements:
         | 
| 129 | 
            +
                - - ! '>='
         | 
| 130 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 131 | 
            +
                    version: '0'
         | 
| 132 | 
            +
              type: :runtime
         | 
| 133 | 
            +
              prerelease: false
         | 
| 134 | 
            +
              version_requirements: *70340107219360
         | 
| 135 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 136 | 
            +
              name: plugin_manager
         | 
| 137 | 
            +
              requirement: &70340107218940 !ruby/object:Gem::Requirement
         | 
| 138 | 
            +
                none: false
         | 
| 139 | 
            +
                requirements:
         | 
| 140 | 
            +
                - - ! '>='
         | 
| 141 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 142 | 
            +
                    version: '0'
         | 
| 143 | 
            +
              type: :runtime
         | 
| 144 | 
            +
              prerelease: false
         | 
| 145 | 
            +
              version_requirements: *70340107218940
         | 
| 146 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 147 | 
            +
              name: redcar-icons
         | 
| 148 | 
            +
              requirement: &70340107218520 !ruby/object:Gem::Requirement
         | 
| 149 | 
            +
                none: false
         | 
| 150 | 
            +
                requirements:
         | 
| 151 | 
            +
                - - ! '>='
         | 
| 152 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 153 | 
            +
                    version: '0'
         | 
| 154 | 
            +
              type: :runtime
         | 
| 155 | 
            +
              prerelease: false
         | 
| 156 | 
            +
              version_requirements: *70340107218520
         | 
| 157 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 158 | 
            +
              name: redcar-jruby
         | 
| 159 | 
            +
              requirement: &70340107218100 !ruby/object:Gem::Requirement
         | 
| 160 | 
            +
                none: false
         | 
| 161 | 
            +
                requirements:
         | 
| 162 | 
            +
                - - ! '>='
         | 
| 163 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 164 | 
            +
                    version: '0'
         | 
| 165 | 
            +
              type: :runtime
         | 
| 166 | 
            +
              prerelease: false
         | 
| 167 | 
            +
              version_requirements: *70340107218100
         | 
| 168 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 169 | 
            +
              name: redcar-svnkit
         | 
| 170 | 
            +
              requirement: &70340107217680 !ruby/object:Gem::Requirement
         | 
| 171 | 
            +
                none: false
         | 
| 172 | 
            +
                requirements:
         | 
| 173 | 
            +
                - - ! '>='
         | 
| 174 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 175 | 
            +
                    version: '0'
         | 
| 176 | 
            +
              type: :runtime
         | 
| 177 | 
            +
              prerelease: false
         | 
| 178 | 
            +
              version_requirements: *70340107217680
         | 
| 179 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 180 | 
            +
              name: redcar-bundles
         | 
| 181 | 
            +
              requirement: &70340107217260 !ruby/object:Gem::Requirement
         | 
| 182 | 
            +
                none: false
         | 
| 183 | 
            +
                requirements:
         | 
| 184 | 
            +
                - - ! '>='
         | 
| 185 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 186 | 
            +
                    version: '0'
         | 
| 187 | 
            +
              type: :runtime
         | 
| 188 | 
            +
              prerelease: false
         | 
| 189 | 
            +
              version_requirements: *70340107217260
         | 
| 190 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 191 | 
            +
              name: redcar-javamateview
         | 
| 192 | 
            +
              requirement: &70340107216840 !ruby/object:Gem::Requirement
         | 
| 193 | 
            +
                none: false
         | 
| 194 | 
            +
                requirements:
         | 
| 195 | 
            +
                - - ! '>='
         | 
| 196 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 197 | 
            +
                    version: '0'
         | 
| 198 | 
            +
              type: :runtime
         | 
| 199 | 
            +
              prerelease: false
         | 
| 200 | 
            +
              version_requirements: *70340107216840
         | 
| 201 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 202 | 
            +
              name: cucumber
         | 
| 203 | 
            +
              requirement: &70340107216320 !ruby/object:Gem::Requirement
         | 
| 204 | 
            +
                none: false
         | 
| 205 | 
            +
                requirements:
         | 
| 206 | 
            +
                - - =
         | 
| 207 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 208 | 
            +
                    version: 1.1.2
         | 
| 209 | 
            +
              type: :development
         | 
| 210 | 
            +
              prerelease: false
         | 
| 211 | 
            +
              version_requirements: *70340107216320
         | 
| 212 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 213 | 
            +
              name: rspec
         | 
| 214 | 
            +
              requirement: &70340107215900 !ruby/object:Gem::Requirement
         | 
| 215 | 
            +
                none: false
         | 
| 216 | 
            +
                requirements:
         | 
| 217 | 
            +
                - - ! '>='
         | 
| 218 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 219 | 
            +
                    version: '0'
         | 
| 220 | 
            +
              type: :development
         | 
| 221 | 
            +
              prerelease: false
         | 
| 222 | 
            +
              version_requirements: *70340107215900
         | 
| 223 | 
            +
            - !ruby/object:Gem::Dependency
         | 
| 224 | 
            +
              name: watchr
         | 
| 225 | 
            +
              requirement: &70340107215440 !ruby/object:Gem::Requirement
         | 
| 226 | 
            +
                none: false
         | 
| 227 | 
            +
                requirements:
         | 
| 228 | 
            +
                - - ! '>='
         | 
| 229 | 
            +
                  - !ruby/object:Gem::Version
         | 
| 230 | 
            +
                    version: '0'
         | 
| 231 | 
            +
              type: :development
         | 
| 232 | 
            +
              prerelease: false
         | 
| 233 | 
            +
              version_requirements: *70340107215440
         | 
| 234 | 
            +
            description: ''
         | 
| 235 | 
            +
            email:
         | 
| 236 | 
            +
            - dan@fluentradical.com
         | 
| 237 | 
            +
            executables:
         | 
| 238 | 
            +
            - redcar
         | 
| 240 239 | 
             
            extensions: []
         | 
| 241 | 
            -
             | 
| 242 | 
            -
             | 
| 243 | 
            -
             | 
| 244 | 
            -
             | 
| 245 | 
            -
             | 
| 246 | 
            -
             | 
| 247 | 
            -
             | 
| 248 | 
            -
             | 
| 249 | 
            -
             | 
| 250 | 
            -
             | 
| 251 | 
            -
             | 
| 252 | 
            -
             | 
| 253 | 
            -
             | 
| 254 | 
            -
             | 
| 255 | 
            -
             | 
| 256 | 
            -
             | 
| 257 | 
            -
             | 
| 258 | 
            -
             | 
| 259 | 
            -
             | 
| 260 | 
            -
             | 
| 261 | 
            -
             | 
| 262 | 
            -
             | 
| 263 | 
            -
             | 
| 264 | 
            -
             | 
| 265 | 
            -
             | 
| 266 | 
            -
             | 
| 267 | 
            -
             | 
| 268 | 
            -
             | 
| 269 | 
            -
             | 
| 270 | 
            -
             | 
| 271 | 
            -
             | 
| 272 | 
            -
             | 
| 273 | 
            -
             | 
| 274 | 
            -
             | 
| 275 | 
            -
             | 
| 276 | 
            -
             | 
| 277 | 
            -
             | 
| 278 | 
            -
             | 
| 279 | 
            -
             | 
| 280 | 
            -
             | 
| 281 | 
            -
             | 
| 282 | 
            -
             | 
| 283 | 
            -
             | 
| 284 | 
            -
             | 
| 285 | 
            -
             | 
| 286 | 
            -
             | 
| 287 | 
            -
             | 
| 288 | 
            -
             | 
| 289 | 
            -
             | 
| 290 | 
            -
             | 
| 291 | 
            -
             | 
| 292 | 
            -
             | 
| 293 | 
            -
             | 
| 294 | 
            -
             | 
| 295 | 
            -
             | 
| 296 | 
            -
             | 
| 297 | 
            -
             | 
| 298 | 
            -
             | 
| 299 | 
            -
             | 
| 300 | 
            -
             | 
| 301 | 
            -
             | 
| 302 | 
            -
             | 
| 303 | 
            -
             | 
| 304 | 
            -
             | 
| 305 | 
            -
             | 
| 306 | 
            -
             | 
| 307 | 
            -
             | 
| 308 | 
            -
             | 
| 309 | 
            -
             | 
| 310 | 
            -
             | 
| 311 | 
            -
             | 
| 312 | 
            -
             | 
| 313 | 
            -
             | 
| 314 | 
            -
             | 
| 315 | 
            -
             | 
| 316 | 
            -
             | 
| 317 | 
            -
             | 
| 318 | 
            -
             | 
| 319 | 
            -
             | 
| 320 | 
            -
             | 
| 321 | 
            -
             | 
| 322 | 
            -
             | 
| 323 | 
            -
             | 
| 324 | 
            -
             | 
| 325 | 
            -
             | 
| 326 | 
            -
             | 
| 327 | 
            -
             | 
| 328 | 
            -
             | 
| 329 | 
            -
             | 
| 330 | 
            -
             | 
| 331 | 
            -
             | 
| 332 | 
            -
             | 
| 333 | 
            -
             | 
| 334 | 
            -
             | 
| 335 | 
            -
             | 
| 336 | 
            -
             | 
| 337 | 
            -
             | 
| 338 | 
            -
             | 
| 339 | 
            -
             | 
| 340 | 
            -
             | 
| 341 | 
            -
             | 
| 342 | 
            -
             | 
| 343 | 
            -
             | 
| 344 | 
            -
             | 
| 345 | 
            -
             | 
| 346 | 
            -
             | 
| 347 | 
            -
             | 
| 348 | 
            -
             | 
| 349 | 
            -
             | 
| 350 | 
            -
             | 
| 351 | 
            -
             | 
| 352 | 
            -
             | 
| 353 | 
            -
             | 
| 354 | 
            -
             | 
| 355 | 
            -
             | 
| 356 | 
            -
             | 
| 357 | 
            -
             | 
| 358 | 
            -
             | 
| 359 | 
            -
             | 
| 360 | 
            -
             | 
| 361 | 
            -
             | 
| 362 | 
            -
             | 
| 363 | 
            -
             | 
| 364 | 
            -
             | 
| 365 | 
            -
             | 
| 366 | 
            -
             | 
| 367 | 
            -
             | 
| 368 | 
            -
             | 
| 369 | 
            -
             | 
| 370 | 
            -
             | 
| 371 | 
            -
             | 
| 372 | 
            -
             | 
| 373 | 
            -
             | 
| 374 | 
            -
             | 
| 375 | 
            -
             | 
| 376 | 
            -
             | 
| 377 | 
            -
             | 
| 378 | 
            -
             | 
| 379 | 
            -
             | 
| 380 | 
            -
             | 
| 381 | 
            -
             | 
| 382 | 
            -
             | 
| 383 | 
            -
             | 
| 384 | 
            -
             | 
| 385 | 
            -
             | 
| 386 | 
            -
             | 
| 387 | 
            -
             | 
| 388 | 
            -
             | 
| 389 | 
            -
             | 
| 390 | 
            -
             | 
| 391 | 
            -
             | 
| 392 | 
            -
             | 
| 393 | 
            -
             | 
| 394 | 
            -
             | 
| 395 | 
            -
             | 
| 396 | 
            -
             | 
| 397 | 
            -
             | 
| 398 | 
            -
             | 
| 399 | 
            -
             | 
| 400 | 
            -
             | 
| 401 | 
            -
             | 
| 402 | 
            -
             | 
| 403 | 
            -
             | 
| 404 | 
            -
             | 
| 405 | 
            -
             | 
| 406 | 
            -
             | 
| 407 | 
            -
             | 
| 408 | 
            -
             | 
| 409 | 
            -
             | 
| 410 | 
            -
             | 
| 411 | 
            -
             | 
| 412 | 
            -
             | 
| 413 | 
            -
             | 
| 414 | 
            -
             | 
| 415 | 
            -
             | 
| 416 | 
            -
             | 
| 417 | 
            -
             | 
| 418 | 
            -
             | 
| 419 | 
            -
             | 
| 420 | 
            -
             | 
| 421 | 
            -
             | 
| 422 | 
            -
             | 
| 423 | 
            -
             | 
| 424 | 
            -
             | 
| 425 | 
            -
             | 
| 426 | 
            -
             | 
| 427 | 
            -
             | 
| 428 | 
            -
             | 
| 429 | 
            -
             | 
| 430 | 
            -
             | 
| 431 | 
            -
             | 
| 432 | 
            -
             | 
| 433 | 
            -
             | 
| 434 | 
            -
             | 
| 435 | 
            -
             | 
| 436 | 
            -
             | 
| 437 | 
            -
             | 
| 438 | 
            -
             | 
| 439 | 
            -
             | 
| 440 | 
            -
             | 
| 441 | 
            -
             | 
| 442 | 
            -
             | 
| 443 | 
            -
             | 
| 444 | 
            -
             | 
| 445 | 
            -
             | 
| 446 | 
            -
             | 
| 447 | 
            -
             | 
| 448 | 
            -
             | 
| 449 | 
            -
             | 
| 450 | 
            -
             | 
| 451 | 
            -
             | 
| 452 | 
            -
             | 
| 453 | 
            -
             | 
| 454 | 
            -
             | 
| 455 | 
            -
             | 
| 456 | 
            -
             | 
| 457 | 
            -
             | 
| 458 | 
            -
             | 
| 459 | 
            -
             | 
| 460 | 
            -
             | 
| 461 | 
            -
             | 
| 462 | 
            -
             | 
| 463 | 
            -
             | 
| 464 | 
            -
             | 
| 465 | 
            -
             | 
| 466 | 
            -
             | 
| 467 | 
            -
             | 
| 468 | 
            -
             | 
| 469 | 
            -
             | 
| 470 | 
            -
             | 
| 471 | 
            -
             | 
| 472 | 
            -
             | 
| 473 | 
            -
             | 
| 474 | 
            -
             | 
| 475 | 
            -
             | 
| 476 | 
            -
             | 
| 477 | 
            -
             | 
| 478 | 
            -
             | 
| 479 | 
            -
             | 
| 480 | 
            -
             | 
| 481 | 
            -
             | 
| 482 | 
            -
             | 
| 483 | 
            -
             | 
| 484 | 
            -
             | 
| 485 | 
            -
             | 
| 486 | 
            -
             | 
| 487 | 
            -
             | 
| 488 | 
            -
             | 
| 489 | 
            -
             | 
| 490 | 
            -
             | 
| 491 | 
            -
             | 
| 492 | 
            -
             | 
| 493 | 
            -
             | 
| 494 | 
            -
             | 
| 495 | 
            -
             | 
| 496 | 
            -
             | 
| 497 | 
            -
             | 
| 498 | 
            -
             | 
| 499 | 
            -
             | 
| 500 | 
            -
             | 
| 501 | 
            -
             | 
| 502 | 
            -
             | 
| 503 | 
            -
             | 
| 504 | 
            -
             | 
| 505 | 
            -
             | 
| 506 | 
            -
             | 
| 507 | 
            -
             | 
| 508 | 
            -
             | 
| 509 | 
            -
             | 
| 510 | 
            -
             | 
| 511 | 
            -
             | 
| 512 | 
            -
             | 
| 513 | 
            -
             | 
| 514 | 
            -
             | 
| 515 | 
            -
             | 
| 516 | 
            -
             | 
| 517 | 
            -
             | 
| 518 | 
            -
             | 
| 519 | 
            -
             | 
| 520 | 
            -
             | 
| 521 | 
            -
             | 
| 522 | 
            -
             | 
| 523 | 
            -
             | 
| 524 | 
            -
             | 
| 525 | 
            -
             | 
| 526 | 
            -
             | 
| 527 | 
            -
             | 
| 528 | 
            -
             | 
| 529 | 
            -
             | 
| 530 | 
            -
             | 
| 531 | 
            -
             | 
| 532 | 
            -
             | 
| 533 | 
            -
             | 
| 534 | 
            -
             | 
| 535 | 
            -
             | 
| 536 | 
            -
             | 
| 537 | 
            -
             | 
| 538 | 
            -
             | 
| 539 | 
            -
             | 
| 540 | 
            -
             | 
| 541 | 
            -
             | 
| 542 | 
            -
             | 
| 543 | 
            -
             | 
| 544 | 
            -
             | 
| 545 | 
            -
             | 
| 546 | 
            -
             | 
| 547 | 
            -
             | 
| 548 | 
            -
             | 
| 549 | 
            -
             | 
| 550 | 
            -
             | 
| 551 | 
            -
             | 
| 552 | 
            -
             | 
| 553 | 
            -
             | 
| 554 | 
            -
             | 
| 555 | 
            -
             | 
| 556 | 
            -
             | 
| 557 | 
            -
             | 
| 558 | 
            -
             | 
| 559 | 
            -
             | 
| 560 | 
            -
             | 
| 561 | 
            -
             | 
| 562 | 
            -
             | 
| 563 | 
            -
             | 
| 564 | 
            -
             | 
| 565 | 
            -
             | 
| 566 | 
            -
             | 
| 567 | 
            -
             | 
| 568 | 
            -
             | 
| 569 | 
            -
             | 
| 570 | 
            -
             | 
| 571 | 
            -
             | 
| 572 | 
            -
             | 
| 573 | 
            -
             | 
| 574 | 
            -
             | 
| 575 | 
            -
             | 
| 576 | 
            -
             | 
| 577 | 
            -
             | 
| 578 | 
            -
             | 
| 579 | 
            -
             | 
| 580 | 
            -
             | 
| 581 | 
            -
             | 
| 582 | 
            -
             | 
| 583 | 
            -
             | 
| 584 | 
            -
             | 
| 585 | 
            -
             | 
| 586 | 
            -
             | 
| 587 | 
            -
             | 
| 588 | 
            -
             | 
| 589 | 
            -
             | 
| 590 | 
            -
             | 
| 591 | 
            -
             | 
| 592 | 
            -
             | 
| 593 | 
            -
             | 
| 594 | 
            -
             | 
| 595 | 
            -
             | 
| 596 | 
            -
             | 
| 597 | 
            -
             | 
| 598 | 
            -
             | 
| 599 | 
            -
             | 
| 600 | 
            -
             | 
| 601 | 
            -
             | 
| 602 | 
            -
             | 
| 603 | 
            -
             | 
| 604 | 
            -
             | 
| 605 | 
            -
             | 
| 606 | 
            -
             | 
| 607 | 
            -
             | 
| 608 | 
            -
             | 
| 609 | 
            -
             | 
| 610 | 
            -
             | 
| 611 | 
            -
             | 
| 612 | 
            -
             | 
| 613 | 
            -
             | 
| 614 | 
            -
             | 
| 615 | 
            -
             | 
| 616 | 
            -
             | 
| 617 | 
            -
             | 
| 618 | 
            -
             | 
| 619 | 
            -
             | 
| 620 | 
            -
             | 
| 621 | 
            -
             | 
| 622 | 
            -
             | 
| 623 | 
            -
             | 
| 624 | 
            -
             | 
| 625 | 
            -
             | 
| 626 | 
            -
             | 
| 627 | 
            -
             | 
| 628 | 
            -
             | 
| 629 | 
            -
             | 
| 630 | 
            -
             | 
| 631 | 
            -
             | 
| 632 | 
            -
             | 
| 633 | 
            -
             | 
| 634 | 
            -
             | 
| 635 | 
            -
             | 
| 636 | 
            -
             | 
| 637 | 
            -
             | 
| 638 | 
            -
             | 
| 639 | 
            -
             | 
| 640 | 
            -
             | 
| 641 | 
            -
             | 
| 642 | 
            -
             | 
| 643 | 
            -
             | 
| 644 | 
            -
             | 
| 645 | 
            -
             | 
| 646 | 
            -
             | 
| 647 | 
            -
             | 
| 648 | 
            -
             | 
| 649 | 
            -
             | 
| 650 | 
            -
             | 
| 651 | 
            -
             | 
| 652 | 
            -
             | 
| 653 | 
            -
             | 
| 654 | 
            -
             | 
| 655 | 
            -
             | 
| 656 | 
            -
             | 
| 657 | 
            -
             | 
| 658 | 
            -
             | 
| 659 | 
            -
             | 
| 660 | 
            -
             | 
| 661 | 
            -
             | 
| 662 | 
            -
             | 
| 663 | 
            -
             | 
| 664 | 
            -
             | 
| 665 | 
            -
             | 
| 666 | 
            -
             | 
| 667 | 
            -
             | 
| 668 | 
            -
             | 
| 669 | 
            -
             | 
| 670 | 
            -
             | 
| 671 | 
            -
             | 
| 672 | 
            -
             | 
| 673 | 
            -
             | 
| 674 | 
            -
             | 
| 675 | 
            -
             | 
| 676 | 
            -
             | 
| 677 | 
            -
             | 
| 678 | 
            -
             | 
| 679 | 
            -
             | 
| 680 | 
            -
             | 
| 681 | 
            -
             | 
| 682 | 
            -
             | 
| 683 | 
            -
             | 
| 684 | 
            -
             | 
| 685 | 
            -
             | 
| 686 | 
            -
             | 
| 687 | 
            -
             | 
| 688 | 
            -
             | 
| 689 | 
            -
             | 
| 690 | 
            -
             | 
| 691 | 
            -
             | 
| 692 | 
            -
             | 
| 693 | 
            -
             | 
| 694 | 
            -
             | 
| 695 | 
            -
             | 
| 696 | 
            -
             | 
| 697 | 
            -
             | 
| 698 | 
            -
             | 
| 699 | 
            -
             | 
| 700 | 
            -
             | 
| 701 | 
            -
             | 
| 702 | 
            -
             | 
| 703 | 
            -
             | 
| 704 | 
            -
             | 
| 705 | 
            -
             | 
| 706 | 
            -
             | 
| 707 | 
            -
             | 
| 708 | 
            -
             | 
| 709 | 
            -
             | 
| 710 | 
            -
             | 
| 711 | 
            -
             | 
| 712 | 
            -
             | 
| 713 | 
            -
             | 
| 714 | 
            -
             | 
| 715 | 
            -
             | 
| 716 | 
            -
             | 
| 717 | 
            -
             | 
| 718 | 
            -
             | 
| 719 | 
            -
             | 
| 720 | 
            -
             | 
| 721 | 
            -
             | 
| 722 | 
            -
             | 
| 723 | 
            -
             | 
| 724 | 
            -
             | 
| 725 | 
            -
             | 
| 726 | 
            -
             | 
| 727 | 
            -
             | 
| 728 | 
            -
             | 
| 729 | 
            -
             | 
| 730 | 
            -
             | 
| 731 | 
            -
             | 
| 732 | 
            -
             | 
| 733 | 
            -
             | 
| 734 | 
            -
             | 
| 735 | 
            -
             | 
| 736 | 
            -
             | 
| 737 | 
            -
             | 
| 738 | 
            -
             | 
| 739 | 
            -
             | 
| 740 | 
            -
             | 
| 741 | 
            -
             | 
| 742 | 
            -
             | 
| 743 | 
            -
             | 
| 744 | 
            -
             | 
| 745 | 
            -
             | 
| 746 | 
            -
             | 
| 747 | 
            -
             | 
| 748 | 
            -
             | 
| 749 | 
            -
             | 
| 750 | 
            -
             | 
| 751 | 
            -
             | 
| 752 | 
            -
             | 
| 753 | 
            -
             | 
| 754 | 
            -
             | 
| 755 | 
            -
             | 
| 756 | 
            -
             | 
| 757 | 
            -
             | 
| 758 | 
            -
             | 
| 759 | 
            -
             | 
| 760 | 
            -
             | 
| 761 | 
            -
             | 
| 762 | 
            -
             | 
| 763 | 
            -
             | 
| 764 | 
            -
             | 
| 765 | 
            -
             | 
| 766 | 
            -
             | 
| 767 | 
            -
             | 
| 768 | 
            -
             | 
| 769 | 
            -
             | 
| 770 | 
            -
             | 
| 771 | 
            -
             | 
| 772 | 
            -
             | 
| 773 | 
            -
             | 
| 774 | 
            -
             | 
| 775 | 
            -
             | 
| 776 | 
            -
             | 
| 777 | 
            -
             | 
| 778 | 
            -
             | 
| 779 | 
            -
             | 
| 780 | 
            -
             | 
| 781 | 
            -
             | 
| 782 | 
            -
             | 
| 783 | 
            -
             | 
| 784 | 
            -
             | 
| 785 | 
            -
             | 
| 786 | 
            -
             | 
| 787 | 
            -
             | 
| 788 | 
            -
             | 
| 789 | 
            -
             | 
| 790 | 
            -
             | 
| 791 | 
            -
             | 
| 792 | 
            -
             | 
| 793 | 
            -
             | 
| 794 | 
            -
             | 
| 795 | 
            -
             | 
| 796 | 
            -
             | 
| 797 | 
            -
             | 
| 798 | 
            -
             | 
| 799 | 
            -
             | 
| 800 | 
            -
             | 
| 801 | 
            -
             | 
| 802 | 
            -
             | 
| 803 | 
            -
             | 
| 804 | 
            -
             | 
| 805 | 
            -
             | 
| 806 | 
            -
             | 
| 807 | 
            -
             | 
| 808 | 
            -
             | 
| 809 | 
            -
             | 
| 810 | 
            -
             | 
| 811 | 
            -
             | 
| 812 | 
            -
             | 
| 813 | 
            -
             | 
| 814 | 
            -
             | 
| 815 | 
            -
             | 
| 816 | 
            -
             | 
| 817 | 
            -
             | 
| 818 | 
            -
             | 
| 819 | 
            -
             | 
| 820 | 
            -
             | 
| 821 | 
            -
             | 
| 822 | 
            -
             | 
| 823 | 
            -
             | 
| 824 | 
            -
             | 
| 825 | 
            -
             | 
| 826 | 
            -
             | 
| 827 | 
            -
             | 
| 828 | 
            -
             | 
| 829 | 
            -
             | 
| 830 | 
            -
             | 
| 831 | 
            -
             | 
| 832 | 
            -
             | 
| 833 | 
            -
             | 
| 834 | 
            -
             | 
| 835 | 
            -
             | 
| 836 | 
            -
             | 
| 837 | 
            -
             | 
| 838 | 
            -
             | 
| 839 | 
            -
             | 
| 840 | 
            -
             | 
| 841 | 
            -
             | 
| 842 | 
            -
             | 
| 843 | 
            -
             | 
| 844 | 
            -
             | 
| 845 | 
            -
             | 
| 846 | 
            -
             | 
| 847 | 
            -
             | 
| 848 | 
            -
             | 
| 849 | 
            -
             | 
| 850 | 
            -
             | 
| 851 | 
            -
             | 
| 852 | 
            -
             | 
| 853 | 
            -
             | 
| 854 | 
            -
             | 
| 855 | 
            -
             | 
| 856 | 
            -
             | 
| 857 | 
            -
             | 
| 858 | 
            -
             | 
| 859 | 
            -
             | 
| 860 | 
            -
             | 
| 861 | 
            -
             | 
| 862 | 
            -
             | 
| 863 | 
            -
             | 
| 864 | 
            -
             | 
| 865 | 
            -
             | 
| 866 | 
            -
             | 
| 867 | 
            -
             | 
| 868 | 
            -
             | 
| 869 | 
            -
             | 
| 870 | 
            -
             | 
| 871 | 
            -
             | 
| 872 | 
            -
             | 
| 873 | 
            -
             | 
| 874 | 
            -
             | 
| 875 | 
            -
             | 
| 876 | 
            -
             | 
| 877 | 
            -
             | 
| 878 | 
            -
             | 
| 879 | 
            -
             | 
| 880 | 
            -
             | 
| 881 | 
            -
             | 
| 882 | 
            -
             | 
| 883 | 
            -
             | 
| 884 | 
            -
             | 
| 885 | 
            -
             | 
| 886 | 
            -
             | 
| 887 | 
            -
             | 
| 888 | 
            -
             | 
| 889 | 
            -
             | 
| 890 | 
            -
             | 
| 891 | 
            -
             | 
| 892 | 
            -
             | 
| 893 | 
            -
             | 
| 894 | 
            -
             | 
| 895 | 
            -
             | 
| 896 | 
            -
             | 
| 897 | 
            -
             | 
| 898 | 
            -
             | 
| 899 | 
            -
             | 
| 900 | 
            -
             | 
| 901 | 
            -
             | 
| 902 | 
            -
             | 
| 903 | 
            -
             | 
| 904 | 
            -
             | 
| 905 | 
            -
             | 
| 906 | 
            -
             | 
| 907 | 
            -
             | 
| 908 | 
            -
             | 
| 909 | 
            -
             | 
| 910 | 
            -
             | 
| 911 | 
            -
             | 
| 912 | 
            -
             | 
| 913 | 
            -
             | 
| 914 | 
            -
             | 
| 915 | 
            -
             | 
| 916 | 
            -
             | 
| 917 | 
            -
             | 
| 918 | 
            -
             | 
| 919 | 
            -
             | 
| 920 | 
            -
             | 
| 921 | 
            -
             | 
| 922 | 
            -
             | 
| 923 | 
            -
             | 
| 924 | 
            -
             | 
| 925 | 
            -
             | 
| 926 | 
            -
             | 
| 927 | 
            -
             | 
| 928 | 
            -
             | 
| 929 | 
            -
             | 
| 930 | 
            -
             | 
| 931 | 
            -
             | 
| 932 | 
            -
             | 
| 933 | 
            -
             | 
| 934 | 
            -
             | 
| 935 | 
            -
             | 
| 936 | 
            -
             | 
| 937 | 
            -
             | 
| 938 | 
            -
             | 
| 939 | 
            -
             | 
| 940 | 
            -
             | 
| 941 | 
            -
              - plugins/web_bookmarks/lib/web_bookmarks.rb
         | 
| 942 | 
            -
              - plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb
         | 
| 943 | 
            -
              - plugins/web_bookmarks/lib/web_bookmarks/commands.rb
         | 
| 944 | 
            -
              - plugins/web_bookmarks/lib/web_bookmarks/tree.rb
         | 
| 945 | 
            -
              - Gemfile
         | 
| 240 | 
            +
            extra_rdoc_files:
         | 
| 241 | 
            +
            - README.md
         | 
| 242 | 
            +
            - LICENSE
         | 
| 243 | 
            +
            - CHANGES
         | 
| 244 | 
            +
            - Gemfile
         | 
| 245 | 
            +
            - Rakefile
         | 
| 246 | 
            +
            files:
         | 
| 247 | 
            +
            - CHANGES
         | 
| 248 | 
            +
            - LICENSE
         | 
| 249 | 
            +
            - Rakefile
         | 
| 250 | 
            +
            - README.md
         | 
| 251 | 
            +
            - bin/redcar
         | 
| 252 | 
            +
            - vendor/ffi-1.0.11-java/History.txt
         | 
| 253 | 
            +
            - vendor/ffi-1.0.11-java/lib/ffi.rb
         | 
| 254 | 
            +
            - vendor/ffi-1.0.11-java/LICENSE
         | 
| 255 | 
            +
            - vendor/ffi-1.0.11-java/Rakefile
         | 
| 256 | 
            +
            - vendor/ffi-1.0.11-java/README.txt
         | 
| 257 | 
            +
            - vendor/ffi-1.0.11-java/tasks/ann.rake
         | 
| 258 | 
            +
            - vendor/ffi-1.0.11-java/tasks/bones.rake
         | 
| 259 | 
            +
            - vendor/ffi-1.0.11-java/tasks/gem.rake
         | 
| 260 | 
            +
            - vendor/ffi-1.0.11-java/tasks/notes.rake
         | 
| 261 | 
            +
            - vendor/ffi-1.0.11-java/tasks/post_load.rake
         | 
| 262 | 
            +
            - vendor/ffi-1.0.11-java/tasks/rdoc.rake
         | 
| 263 | 
            +
            - vendor/ffi-1.0.11-java/tasks/rubyforge.rake
         | 
| 264 | 
            +
            - vendor/ffi-1.0.11-java/tasks/setup.rb
         | 
| 265 | 
            +
            - vendor/ffi-1.0.11-java/tasks/setup.rb.orig
         | 
| 266 | 
            +
            - vendor/ffi-1.0.11-java/tasks/spec.rake
         | 
| 267 | 
            +
            - vendor/ffi-1.0.11-java/tasks/svn.rake
         | 
| 268 | 
            +
            - vendor/ffi-1.0.11-java/tasks/test.rake
         | 
| 269 | 
            +
            - vendor/ffi-1.0.11-java/tasks/zentest.rake
         | 
| 270 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/bigdecimal.rb
         | 
| 271 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/complex.rb
         | 
| 272 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/core.rb
         | 
| 273 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/date.rb
         | 
| 274 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/date_time.rb
         | 
| 275 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/exception.rb
         | 
| 276 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/ostruct.rb
         | 
| 277 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/range.rb
         | 
| 278 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/rational.rb
         | 
| 279 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/regexp.rb
         | 
| 280 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/struct.rb
         | 
| 281 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/symbol.rb
         | 
| 282 | 
            +
            - vendor/json-1.6.4-java/lib/json/add/time.rb
         | 
| 283 | 
            +
            - vendor/json-1.6.4-java/lib/json/common.rb
         | 
| 284 | 
            +
            - vendor/json-1.6.4-java/lib/json/ext/generator.jar
         | 
| 285 | 
            +
            - vendor/json-1.6.4-java/lib/json/ext/parser.jar
         | 
| 286 | 
            +
            - vendor/json-1.6.4-java/lib/json/ext.rb
         | 
| 287 | 
            +
            - vendor/json-1.6.4-java/lib/json/pure/generator.rb
         | 
| 288 | 
            +
            - vendor/json-1.6.4-java/lib/json/pure/parser.rb
         | 
| 289 | 
            +
            - vendor/json-1.6.4-java/lib/json/pure.rb
         | 
| 290 | 
            +
            - vendor/json-1.6.4-java/lib/json/version.rb
         | 
| 291 | 
            +
            - vendor/json-1.6.4-java/lib/json.rb
         | 
| 292 | 
            +
            - lib/redcar/instance_exec.rb
         | 
| 293 | 
            +
            - lib/redcar/logger.rb
         | 
| 294 | 
            +
            - lib/redcar/plist.rb
         | 
| 295 | 
            +
            - lib/redcar/ruby_extensions.rb
         | 
| 296 | 
            +
            - lib/redcar/runner.rb
         | 
| 297 | 
            +
            - lib/redcar/usage.rb
         | 
| 298 | 
            +
            - lib/redcar.rb
         | 
| 299 | 
            +
            - lib/redcar_quick_start.rb
         | 
| 300 | 
            +
            - lib/regex_replace.rb
         | 
| 301 | 
            +
            - lib/tasks/app-bundle.rake
         | 
| 302 | 
            +
            - plugins/application/features/main_menu.feature
         | 
| 303 | 
            +
            - plugins/application/features/step_definitions/command_steps.rb
         | 
| 304 | 
            +
            - plugins/application/features/step_definitions/dialog_steps.rb
         | 
| 305 | 
            +
            - plugins/application/features/step_definitions/filter_list_dialog_steps.rb
         | 
| 306 | 
            +
            - plugins/application/features/step_definitions/key_steps.rb
         | 
| 307 | 
            +
            - plugins/application/features/step_definitions/menu_steps.rb
         | 
| 308 | 
            +
            - plugins/application/features/step_definitions/navigation_history_steps.rb
         | 
| 309 | 
            +
            - plugins/application/features/step_definitions/speedbar_steps.rb
         | 
| 310 | 
            +
            - plugins/application/features/step_definitions/tree_steps.rb
         | 
| 311 | 
            +
            - plugins/application/features/step_definitions/window_steps.rb
         | 
| 312 | 
            +
            - plugins/application/features/support/env.rb
         | 
| 313 | 
            +
            - plugins/application/features/support/fake_event.rb
         | 
| 314 | 
            +
            - plugins/application/lib/application/assets/file.png
         | 
| 315 | 
            +
            - plugins/application/lib/application/clipboard.rb
         | 
| 316 | 
            +
            - plugins/application/lib/application/command/executor.rb
         | 
| 317 | 
            +
            - plugins/application/lib/application/command/history.rb
         | 
| 318 | 
            +
            - plugins/application/lib/application/command.rb
         | 
| 319 | 
            +
            - plugins/application/lib/application/commands/application_commands.rb
         | 
| 320 | 
            +
            - plugins/application/lib/application/commands/notebook_commands.rb
         | 
| 321 | 
            +
            - plugins/application/lib/application/commands/tab_commands.rb
         | 
| 322 | 
            +
            - plugins/application/lib/application/commands/treebook_commands.rb
         | 
| 323 | 
            +
            - plugins/application/lib/application/commands/window_commands.rb
         | 
| 324 | 
            +
            - plugins/application/lib/application/dialog.rb
         | 
| 325 | 
            +
            - plugins/application/lib/application/dialogs/filter_list_dialog.rb
         | 
| 326 | 
            +
            - plugins/application/lib/application/dialogs/modeless_list_dialog.rb
         | 
| 327 | 
            +
            - plugins/application/lib/application/event_spewer.rb
         | 
| 328 | 
            +
            - plugins/application/lib/application/global_state.rb
         | 
| 329 | 
            +
            - plugins/application/lib/application/keymap/builder.rb
         | 
| 330 | 
            +
            - plugins/application/lib/application/keymap.rb
         | 
| 331 | 
            +
            - plugins/application/lib/application/menu/builder/group.rb
         | 
| 332 | 
            +
            - plugins/application/lib/application/menu/builder.rb
         | 
| 333 | 
            +
            - plugins/application/lib/application/menu/item.rb
         | 
| 334 | 
            +
            - plugins/application/lib/application/menu/lazy_menu.rb
         | 
| 335 | 
            +
            - plugins/application/lib/application/menu.rb
         | 
| 336 | 
            +
            - plugins/application/lib/application/navigation_history.rb
         | 
| 337 | 
            +
            - plugins/application/lib/application/notebook.rb
         | 
| 338 | 
            +
            - plugins/application/lib/application/sensitive.rb
         | 
| 339 | 
            +
            - plugins/application/lib/application/sensitivity.rb
         | 
| 340 | 
            +
            - plugins/application/lib/application/speedbar.rb
         | 
| 341 | 
            +
            - plugins/application/lib/application/tab/command.rb
         | 
| 342 | 
            +
            - plugins/application/lib/application/tab.rb
         | 
| 343 | 
            +
            - plugins/application/lib/application/toolbar/builder/group.rb
         | 
| 344 | 
            +
            - plugins/application/lib/application/toolbar/builder.rb
         | 
| 345 | 
            +
            - plugins/application/lib/application/toolbar/item.rb
         | 
| 346 | 
            +
            - plugins/application/lib/application/toolbar/lazy_toolbar.rb
         | 
| 347 | 
            +
            - plugins/application/lib/application/toolbar.rb
         | 
| 348 | 
            +
            - plugins/application/lib/application/tree/command.rb
         | 
| 349 | 
            +
            - plugins/application/lib/application/tree/controller.rb
         | 
| 350 | 
            +
            - plugins/application/lib/application/tree/mirror.rb
         | 
| 351 | 
            +
            - plugins/application/lib/application/tree.rb
         | 
| 352 | 
            +
            - plugins/application/lib/application/treebook.rb
         | 
| 353 | 
            +
            - plugins/application/lib/application/updates.rb
         | 
| 354 | 
            +
            - plugins/application/lib/application/window.rb
         | 
| 355 | 
            +
            - plugins/application/lib/application.rb
         | 
| 356 | 
            +
            - plugins/application/plugin.rb
         | 
| 357 | 
            +
            - plugins/application/spec/application/application_spec.rb
         | 
| 358 | 
            +
            - plugins/application/spec/application/clipboard_spec.rb
         | 
| 359 | 
            +
            - plugins/application/spec/application/command/executor_spec.rb
         | 
| 360 | 
            +
            - plugins/application/spec/application/command/history_spec.rb
         | 
| 361 | 
            +
            - plugins/application/spec/application/command_spec.rb
         | 
| 362 | 
            +
            - plugins/application/spec/application/controllers/application_controller.rb
         | 
| 363 | 
            +
            - plugins/application/spec/application/controllers/notebook_controller.rb
         | 
| 364 | 
            +
            - plugins/application/spec/application/controllers/window_controller.rb
         | 
| 365 | 
            +
            - plugins/application/spec/application/keymap/builder_spec.rb
         | 
| 366 | 
            +
            - plugins/application/spec/application/menu/builder_spec.rb
         | 
| 367 | 
            +
            - plugins/application/spec/application/menu/menu_item_spec.rb
         | 
| 368 | 
            +
            - plugins/application/spec/application/menu_spec.rb
         | 
| 369 | 
            +
            - plugins/application/spec/application/navigation_history_spec.rb
         | 
| 370 | 
            +
            - plugins/application/spec/application/notebook_spec.rb
         | 
| 371 | 
            +
            - plugins/application/spec/application/sensitive_spec.rb
         | 
| 372 | 
            +
            - plugins/application/spec/application/speedbar_spec.rb
         | 
| 373 | 
            +
            - plugins/application/spec/application/treebook_spec.rb
         | 
| 374 | 
            +
            - plugins/application/spec/application/updates_spec.rb
         | 
| 375 | 
            +
            - plugins/application/spec/application/window_spec.rb
         | 
| 376 | 
            +
            - plugins/application/spec/spec_helper.rb
         | 
| 377 | 
            +
            - plugins/application_swt/build.xml
         | 
| 378 | 
            +
            - plugins/application_swt/lib/application_swt/bring_to_front.rb
         | 
| 379 | 
            +
            - plugins/application_swt/lib/application_swt/clipboard.rb
         | 
| 380 | 
            +
            - plugins/application_swt/lib/application_swt/dialog_adapter.rb
         | 
| 381 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb
         | 
| 382 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/input_dialog.rb
         | 
| 383 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/modeless_dialog.rb
         | 
| 384 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/modeless_html_dialog.rb
         | 
| 385 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/modeless_list_dialog_controller.rb
         | 
| 386 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/no_buttons_dialog.rb
         | 
| 387 | 
            +
            - plugins/application_swt/lib/application_swt/dialogs/text_and_file_dialog.rb
         | 
| 388 | 
            +
            - plugins/application_swt/lib/application_swt/gradient.rb
         | 
| 389 | 
            +
            - plugins/application_swt/lib/application_swt/html_tab.rb
         | 
| 390 | 
            +
            - plugins/application_swt/lib/application_swt/icon.rb
         | 
| 391 | 
            +
            - plugins/application_swt/lib/application_swt/listener_helpers.rb
         | 
| 392 | 
            +
            - plugins/application_swt/lib/application_swt/menu/binding_translator.rb
         | 
| 393 | 
            +
            - plugins/application_swt/lib/application_swt/menu.rb
         | 
| 394 | 
            +
            - plugins/application_swt/lib/application_swt/notebook/tab_drag_and_drop_listener.rb
         | 
| 395 | 
            +
            - plugins/application_swt/lib/application_swt/notebook/tab_transfer.rb
         | 
| 396 | 
            +
            - plugins/application_swt/lib/application_swt/notebook.rb
         | 
| 397 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar/button_item.rb
         | 
| 398 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar/combo_item.rb
         | 
| 399 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar/label_item.rb
         | 
| 400 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar/slider_item.rb
         | 
| 401 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar/text_box_item.rb
         | 
| 402 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar/toggle_item.rb
         | 
| 403 | 
            +
            - plugins/application_swt/lib/application_swt/speedbar.rb
         | 
| 404 | 
            +
            - plugins/application_swt/lib/application_swt/tab.rb
         | 
| 405 | 
            +
            - plugins/application_swt/lib/application_swt/toolbar/binding_translator.rb
         | 
| 406 | 
            +
            - plugins/application_swt/lib/application_swt/toolbar.rb
         | 
| 407 | 
            +
            - plugins/application_swt/lib/application_swt/treebook.rb
         | 
| 408 | 
            +
            - plugins/application_swt/lib/application_swt/window.rb
         | 
| 409 | 
            +
            - plugins/application_swt/lib/application_swt.rb
         | 
| 410 | 
            +
            - plugins/application_swt/lib/dist/application_swt.jar
         | 
| 411 | 
            +
            - plugins/application_swt/lib/swt/graphics_utils.rb
         | 
| 412 | 
            +
            - plugins/application_swt/lib/swt/vtab_folder.rb
         | 
| 413 | 
            +
            - plugins/application_swt/lib/swt/vtab_item.rb
         | 
| 414 | 
            +
            - plugins/application_swt/lib/swt/vtab_label.rb
         | 
| 415 | 
            +
            - plugins/application_swt/plugin.rb
         | 
| 416 | 
            +
            - plugins/application_swt/spec/application_swt/gradient_spec.rb
         | 
| 417 | 
            +
            - plugins/application_swt/spec/application_swt/menu/binding_translator_spec.rb
         | 
| 418 | 
            +
            - plugins/application_swt/spec/application_swt/menu_spec.rb
         | 
| 419 | 
            +
            - plugins/application_swt/spec/spec_helper.rb
         | 
| 420 | 
            +
            - plugins/application_swt/src/com/redcareditor/application_swt/CocoaUIEnhancer.java
         | 
| 421 | 
            +
            - plugins/auto_completer/features/auto_complete.feature
         | 
| 422 | 
            +
            - plugins/auto_completer/features/step_definitions/auto_complete_steps.rb
         | 
| 423 | 
            +
            - plugins/auto_completer/features/step_definitions/dependency_steps.rb
         | 
| 424 | 
            +
            - plugins/auto_completer/features/support/env.rb
         | 
| 425 | 
            +
            - plugins/auto_completer/lib/auto_completer/current_document_completion_source.rb
         | 
| 426 | 
            +
            - plugins/auto_completer/lib/auto_completer/document_controller.rb
         | 
| 427 | 
            +
            - plugins/auto_completer/lib/auto_completer/list_dialog.rb
         | 
| 428 | 
            +
            - plugins/auto_completer/lib/auto_completer/word_iterator.rb
         | 
| 429 | 
            +
            - plugins/auto_completer/lib/auto_completer/word_list.rb
         | 
| 430 | 
            +
            - plugins/auto_completer/lib/auto_completer.rb
         | 
| 431 | 
            +
            - plugins/auto_completer/plugin.rb
         | 
| 432 | 
            +
            - plugins/auto_indenter/features/java_style_indentation.feature
         | 
| 433 | 
            +
            - plugins/auto_indenter/features/ruby_style_indentation.feature
         | 
| 434 | 
            +
            - plugins/auto_indenter/features/step_definitions/indentation_steps.rb
         | 
| 435 | 
            +
            - plugins/auto_indenter/features/support/env.rb
         | 
| 436 | 
            +
            - plugins/auto_indenter/lib/auto_indenter/analyzer.rb
         | 
| 437 | 
            +
            - plugins/auto_indenter/lib/auto_indenter/commands.rb
         | 
| 438 | 
            +
            - plugins/auto_indenter/lib/auto_indenter/document_controller.rb
         | 
| 439 | 
            +
            - plugins/auto_indenter/lib/auto_indenter/rules.rb
         | 
| 440 | 
            +
            - plugins/auto_indenter/lib/auto_indenter.rb
         | 
| 441 | 
            +
            - plugins/auto_indenter/plugin.rb
         | 
| 442 | 
            +
            - plugins/auto_indenter/spec/auto_indenter/analyzer_spec.rb
         | 
| 443 | 
            +
            - plugins/auto_indenter/spec/spec_helper.rb
         | 
| 444 | 
            +
            - plugins/auto_pairer/features/auto_pairer.feature
         | 
| 445 | 
            +
            - plugins/auto_pairer/features/step_definitions/auto_pairer_steps.rb
         | 
| 446 | 
            +
            - plugins/auto_pairer/features/support/env.rb
         | 
| 447 | 
            +
            - plugins/auto_pairer/lib/auto_pairer/document_controller.rb
         | 
| 448 | 
            +
            - plugins/auto_pairer/lib/auto_pairer/pairs_for_scope.rb
         | 
| 449 | 
            +
            - plugins/auto_pairer/lib/auto_pairer.rb
         | 
| 450 | 
            +
            - plugins/auto_pairer/plugin.rb
         | 
| 451 | 
            +
            - plugins/clipboard-viewer/lib/clipboard_viewer/browser_controller.rb
         | 
| 452 | 
            +
            - plugins/clipboard-viewer/lib/clipboard_viewer/clipboard_bar.rb
         | 
| 453 | 
            +
            - plugins/clipboard-viewer/lib/clipboard_viewer.rb
         | 
| 454 | 
            +
            - plugins/clipboard-viewer/plugin.rb
         | 
| 455 | 
            +
            - plugins/clipboard-viewer/Screenshot.png
         | 
| 456 | 
            +
            - plugins/clipboard-viewer/views/clipboard.html.erb
         | 
| 457 | 
            +
            - plugins/clipboard-viewer/views/default.css
         | 
| 458 | 
            +
            - plugins/clipboard-viewer/views/redcar_small_icon.png
         | 
| 459 | 
            +
            - plugins/comment/features/line_comment.feature
         | 
| 460 | 
            +
            - plugins/comment/features/selection_comment.feature
         | 
| 461 | 
            +
            - plugins/comment/features/step_definitions/comment_steps.rb
         | 
| 462 | 
            +
            - plugins/comment/lib/comment.rb
         | 
| 463 | 
            +
            - plugins/comment/plugin.rb
         | 
| 464 | 
            +
            - plugins/comment/vendor/comment_lib.json
         | 
| 465 | 
            +
            - plugins/connection_manager/lib/connection_manager/commands.rb
         | 
| 466 | 
            +
            - plugins/connection_manager/lib/connection_manager/connection_store.rb
         | 
| 467 | 
            +
            - plugins/connection_manager/lib/connection_manager/controller.rb
         | 
| 468 | 
            +
            - plugins/connection_manager/lib/connection_manager/filter_dialog.rb
         | 
| 469 | 
            +
            - plugins/connection_manager/lib/connection_manager/private_key_store.rb
         | 
| 470 | 
            +
            - plugins/connection_manager/lib/connection_manager.rb
         | 
| 471 | 
            +
            - plugins/connection_manager/plugin.rb
         | 
| 472 | 
            +
            - plugins/connection_manager/views/index.html.erb
         | 
| 473 | 
            +
            - plugins/core/lib/core/controller.rb
         | 
| 474 | 
            +
            - plugins/core/lib/core/gui.rb
         | 
| 475 | 
            +
            - plugins/core/lib/core/has_spi.rb
         | 
| 476 | 
            +
            - plugins/core/lib/core/interface.rb
         | 
| 477 | 
            +
            - plugins/core/lib/core/model.rb
         | 
| 478 | 
            +
            - plugins/core/lib/core/observable.rb
         | 
| 479 | 
            +
            - plugins/core/lib/core/observable_struct.rb
         | 
| 480 | 
            +
            - plugins/core/lib/core/persistent_cache.rb
         | 
| 481 | 
            +
            - plugins/core/lib/core/plugin/storage.rb
         | 
| 482 | 
            +
            - plugins/core/lib/core/plugin.rb
         | 
| 483 | 
            +
            - plugins/core/lib/core/reentry_helpers.rb
         | 
| 484 | 
            +
            - plugins/core/lib/core/resource.rb
         | 
| 485 | 
            +
            - plugins/core/lib/core/task.rb
         | 
| 486 | 
            +
            - plugins/core/lib/core/task_queue.rb
         | 
| 487 | 
            +
            - plugins/core/lib/core.rb
         | 
| 488 | 
            +
            - plugins/core/plugin.rb
         | 
| 489 | 
            +
            - plugins/core/spec/core/base_storage_spec.rb
         | 
| 490 | 
            +
            - plugins/core/spec/core/gui_spec.rb
         | 
| 491 | 
            +
            - plugins/core/spec/core/observable_spec.rb
         | 
| 492 | 
            +
            - plugins/core/spec/core/persistent_cache_spec.rb
         | 
| 493 | 
            +
            - plugins/core/spec/core/resource_spec.rb
         | 
| 494 | 
            +
            - plugins/core/spec/core/shared_storage_spec.rb
         | 
| 495 | 
            +
            - plugins/core/spec/core/storage_spec.rb
         | 
| 496 | 
            +
            - plugins/core/spec/core/task_queue_spec.rb
         | 
| 497 | 
            +
            - plugins/core/spec/spec_helper.rb
         | 
| 498 | 
            +
            - plugins/declarations/lib/declarations/commands.rb
         | 
| 499 | 
            +
            - plugins/declarations/lib/declarations/completion_source.rb
         | 
| 500 | 
            +
            - plugins/declarations/lib/declarations/file.rb
         | 
| 501 | 
            +
            - plugins/declarations/lib/declarations/parser.rb
         | 
| 502 | 
            +
            - plugins/declarations/lib/declarations/select_tag_dialog.rb
         | 
| 503 | 
            +
            - plugins/declarations/lib/declarations.rb
         | 
| 504 | 
            +
            - plugins/declarations/plugin.rb
         | 
| 505 | 
            +
            - plugins/declarations/spec/declarations/file_spec.rb
         | 
| 506 | 
            +
            - plugins/declarations/spec/fixtures/federalist.rb
         | 
| 507 | 
            +
            - plugins/declarations/spec/fixtures/some_project/javascript.js
         | 
| 508 | 
            +
            - plugins/declarations/spec/fixtures/some_project/nothing_to_see.rb
         | 
| 509 | 
            +
            - plugins/declarations/spec/fixtures/some_project/one_lonely_class.rb
         | 
| 510 | 
            +
            - plugins/declarations/spec/fixtures/some_project/similar_names.rb
         | 
| 511 | 
            +
            - plugins/declarations/spec/fixtures/some_project/something_fancy.rb
         | 
| 512 | 
            +
            - plugins/declarations/spec/fixtures/some_project/trailing_space.rb
         | 
| 513 | 
            +
            - plugins/declarations/spec/spec_helper.rb
         | 
| 514 | 
            +
            - plugins/document_search/features/find.feature
         | 
| 515 | 
            +
            - plugins/document_search/features/incremental_search.feature
         | 
| 516 | 
            +
            - plugins/document_search/features/replace.feature
         | 
| 517 | 
            +
            - plugins/document_search/features/step_definitions/find_steps.rb
         | 
| 518 | 
            +
            - plugins/document_search/features/support/env.rb
         | 
| 519 | 
            +
            - plugins/document_search/lib/document_search/commands.rb
         | 
| 520 | 
            +
            - plugins/document_search/lib/document_search/find_speedbar.rb
         | 
| 521 | 
            +
            - plugins/document_search/lib/document_search/incremental_search_speedbar.rb
         | 
| 522 | 
            +
            - plugins/document_search/lib/document_search/query_options.rb
         | 
| 523 | 
            +
            - plugins/document_search/lib/document_search.rb
         | 
| 524 | 
            +
            - plugins/document_search/plugin.rb
         | 
| 525 | 
            +
            - plugins/document_search/Readme.md
         | 
| 526 | 
            +
            - plugins/edit_view/features/align_assignment.feature
         | 
| 527 | 
            +
            - plugins/edit_view/features/case_change.feature
         | 
| 528 | 
            +
            - plugins/edit_view/features/cursor_navigation.feature
         | 
| 529 | 
            +
            - plugins/edit_view/features/cut_and_paste.feature
         | 
| 530 | 
            +
            - plugins/edit_view/features/grammar.feature
         | 
| 531 | 
            +
            - plugins/edit_view/features/indentation_commands.feature
         | 
| 532 | 
            +
            - plugins/edit_view/features/line_delimiter.feature
         | 
| 533 | 
            +
            - plugins/edit_view/features/multiple_notebooks.feature
         | 
| 534 | 
            +
            - plugins/edit_view/features/multiple_windows.feature
         | 
| 535 | 
            +
            - plugins/edit_view/features/new_tab.feature
         | 
| 536 | 
            +
            - plugins/edit_view/features/soft_tabs.feature
         | 
| 537 | 
            +
            - plugins/edit_view/features/sort_lines.feature
         | 
| 538 | 
            +
            - plugins/edit_view/features/step_definitions/dependency_steps.rb
         | 
| 539 | 
            +
            - plugins/edit_view/features/step_definitions/editing_steps.rb
         | 
| 540 | 
            +
            - plugins/edit_view/features/step_definitions/grammar_steps.rb
         | 
| 541 | 
            +
            - plugins/edit_view/features/step_definitions/key_steps.rb
         | 
| 542 | 
            +
            - plugins/edit_view/features/step_definitions/notebook_steps.rb
         | 
| 543 | 
            +
            - plugins/edit_view/features/step_definitions/tab_steps.rb
         | 
| 544 | 
            +
            - plugins/edit_view/features/step_definitions/window_steps.rb
         | 
| 545 | 
            +
            - plugins/edit_view/features/support/env.rb
         | 
| 546 | 
            +
            - plugins/edit_view/features/switch_tabs.feature
         | 
| 547 | 
            +
            - plugins/edit_view/features/tabs.feature
         | 
| 548 | 
            +
            - plugins/edit_view/features/undo_and_redo.feature
         | 
| 549 | 
            +
            - plugins/edit_view/features/word_matching.feature
         | 
| 550 | 
            +
            - plugins/edit_view/lib/edit_view/actions/arrow_keys.rb
         | 
| 551 | 
            +
            - plugins/edit_view/lib/edit_view/actions/cmd_enter.rb
         | 
| 552 | 
            +
            - plugins/edit_view/lib/edit_view/actions/deletion.rb
         | 
| 553 | 
            +
            - plugins/edit_view/lib/edit_view/actions/esc.rb
         | 
| 554 | 
            +
            - plugins/edit_view/lib/edit_view/actions/tab.rb
         | 
| 555 | 
            +
            - plugins/edit_view/lib/edit_view/command.rb
         | 
| 556 | 
            +
            - plugins/edit_view/lib/edit_view/commands/align_assignment_command.rb
         | 
| 557 | 
            +
            - plugins/edit_view/lib/edit_view/commands/change_language_command.rb
         | 
| 558 | 
            +
            - plugins/edit_view/lib/edit_view/commands/language_settings_commands.rb
         | 
| 559 | 
            +
            - plugins/edit_view/lib/edit_view/commands/text_conversion_commands.rb
         | 
| 560 | 
            +
            - plugins/edit_view/lib/edit_view/document/command.rb
         | 
| 561 | 
            +
            - plugins/edit_view/lib/edit_view/document/controller.rb
         | 
| 562 | 
            +
            - plugins/edit_view/lib/edit_view/document/history.rb
         | 
| 563 | 
            +
            - plugins/edit_view/lib/edit_view/document/indentation.rb
         | 
| 564 | 
            +
            - plugins/edit_view/lib/edit_view/document/mirror.rb
         | 
| 565 | 
            +
            - plugins/edit_view/lib/edit_view/document.rb
         | 
| 566 | 
            +
            - plugins/edit_view/lib/edit_view/edit_tab.rb
         | 
| 567 | 
            +
            - plugins/edit_view/lib/edit_view/grammar.rb
         | 
| 568 | 
            +
            - plugins/edit_view/lib/edit_view/grammars/default.rb
         | 
| 569 | 
            +
            - plugins/edit_view/lib/edit_view/grammars/ruby.rb
         | 
| 570 | 
            +
            - plugins/edit_view/lib/edit_view/grammars/ruby_on_rails.rb
         | 
| 571 | 
            +
            - plugins/edit_view/lib/edit_view/modified_tabs_checker.rb
         | 
| 572 | 
            +
            - plugins/edit_view/lib/edit_view/select_font_dialog.rb
         | 
| 573 | 
            +
            - plugins/edit_view/lib/edit_view/select_theme_dialog.rb
         | 
| 574 | 
            +
            - plugins/edit_view/lib/edit_view/tab_settings.rb
         | 
| 575 | 
            +
            - plugins/edit_view/lib/edit_view.rb
         | 
| 576 | 
            +
            - plugins/edit_view/plugin.rb
         | 
| 577 | 
            +
            - plugins/edit_view/spec/edit_view/commands/align_assignment_command_spec.rb
         | 
| 578 | 
            +
            - plugins/edit_view/spec/edit_view/document/indentation_spec.rb
         | 
| 579 | 
            +
            - plugins/edit_view/spec/edit_view/document_spec.rb
         | 
| 580 | 
            +
            - plugins/edit_view/spec/spec_helper.rb
         | 
| 581 | 
            +
            - plugins/edit_view_swt/lib/edit_view_swt/document.rb
         | 
| 582 | 
            +
            - plugins/edit_view_swt/lib/edit_view_swt/edit_tab.rb
         | 
| 583 | 
            +
            - plugins/edit_view_swt/lib/edit_view_swt/word_movement.rb
         | 
| 584 | 
            +
            - plugins/edit_view_swt/lib/edit_view_swt.rb
         | 
| 585 | 
            +
            - plugins/edit_view_swt/plugin.rb
         | 
| 586 | 
            +
            - plugins/edit_view_swt/spec/edit_view_swt/word_movement_spec.rb
         | 
| 587 | 
            +
            - plugins/edit_view_swt/spec/spec_helper.rb
         | 
| 588 | 
            +
            - plugins/encryption/encryption.rb
         | 
| 589 | 
            +
            - plugins/encryption/ezcrypto.rb
         | 
| 590 | 
            +
            - plugins/encryption/jarmor-1.1.jar
         | 
| 591 | 
            +
            - plugins/encryption/plugin.rb
         | 
| 592 | 
            +
            - plugins/execute_current_tab/lib/execute_current_tab.rb
         | 
| 593 | 
            +
            - plugins/execute_current_tab/plugin.rb
         | 
| 594 | 
            +
            - plugins/help/lib/help/help_tab.rb
         | 
| 595 | 
            +
            - plugins/help/lib/help/view_controller.rb
         | 
| 596 | 
            +
            - plugins/help/lib/help.rb
         | 
| 597 | 
            +
            - plugins/help/plugin.rb
         | 
| 598 | 
            +
            - plugins/help/views/default.css
         | 
| 599 | 
            +
            - plugins/help/views/index.html.erb
         | 
| 600 | 
            +
            - plugins/help/views/redcar_small_icon.png
         | 
| 601 | 
            +
            - plugins/html_view/assets/blueprint/ie.css
         | 
| 602 | 
            +
            - plugins/html_view/assets/blueprint/print.css
         | 
| 603 | 
            +
            - plugins/html_view/assets/blueprint/screen.css
         | 
| 604 | 
            +
            - plugins/html_view/assets/blueprint/src/forms.css
         | 
| 605 | 
            +
            - plugins/html_view/assets/blueprint/src/grid.css
         | 
| 606 | 
            +
            - plugins/html_view/assets/blueprint/src/grid.png
         | 
| 607 | 
            +
            - plugins/html_view/assets/blueprint/src/ie.css
         | 
| 608 | 
            +
            - plugins/html_view/assets/blueprint/src/print.css
         | 
| 609 | 
            +
            - plugins/html_view/assets/blueprint/src/reset.css
         | 
| 610 | 
            +
            - plugins/html_view/assets/blueprint/src/typography.css
         | 
| 611 | 
            +
            - plugins/html_view/assets/jquery-1.4.min.js
         | 
| 612 | 
            +
            - plugins/html_view/assets/json2.js
         | 
| 613 | 
            +
            - plugins/html_view/assets/redcar.css
         | 
| 614 | 
            +
            - plugins/html_view/features/browser_bar.feature
         | 
| 615 | 
            +
            - plugins/html_view/features/fixtures/other.html
         | 
| 616 | 
            +
            - plugins/html_view/features/fixtures/sample.html
         | 
| 617 | 
            +
            - plugins/html_view/features/step_definitions/html_view_steps.rb
         | 
| 618 | 
            +
            - plugins/html_view/features/step_definitions/web_view_steps.rb
         | 
| 619 | 
            +
            - plugins/html_view/features/support/env.rb
         | 
| 620 | 
            +
            - plugins/html_view/features/web_preview.feature
         | 
| 621 | 
            +
            - plugins/html_view/lib/html_controller.rb
         | 
| 622 | 
            +
            - plugins/html_view/lib/html_view/browser_bar.rb
         | 
| 623 | 
            +
            - plugins/html_view/lib/html_view/commands.rb
         | 
| 624 | 
            +
            - plugins/html_view/lib/html_view/default_controller.rb
         | 
| 625 | 
            +
            - plugins/html_view/lib/html_view/html_tab.rb
         | 
| 626 | 
            +
            - plugins/html_view/lib/html_view.rb
         | 
| 627 | 
            +
            - plugins/html_view/plugin.rb
         | 
| 628 | 
            +
            - plugins/html_view/views/default.css
         | 
| 629 | 
            +
            - plugins/html_view/views/index.html.erb
         | 
| 630 | 
            +
            - plugins/html_view/views/watermark-48.png
         | 
| 631 | 
            +
            - plugins/java/features/fixtures/lib/classes.jar
         | 
| 632 | 
            +
            - plugins/java/features/fixtures/test.java
         | 
| 633 | 
            +
            - plugins/java/features/support/env.rb
         | 
| 634 | 
            +
            - plugins/java/features/syntax_check_java.feature
         | 
| 635 | 
            +
            - plugins/java/lib/syntax_check/java.rb
         | 
| 636 | 
            +
            - plugins/java/plugin.rb
         | 
| 637 | 
            +
            - plugins/key_bindings/lib/key_bindings.rb
         | 
| 638 | 
            +
            - plugins/key_bindings/plugin.rb
         | 
| 639 | 
            +
            - plugins/line_tools/features/clear_line.feature
         | 
| 640 | 
            +
            - plugins/line_tools/features/kill_line.feature
         | 
| 641 | 
            +
            - plugins/line_tools/features/lower_text.feature
         | 
| 642 | 
            +
            - plugins/line_tools/features/raise_text.feature
         | 
| 643 | 
            +
            - plugins/line_tools/features/replace_line.feature
         | 
| 644 | 
            +
            - plugins/line_tools/features/step_definitions/line_tools_steps.rb
         | 
| 645 | 
            +
            - plugins/line_tools/features/support/env.rb
         | 
| 646 | 
            +
            - plugins/line_tools/features/trim_line.feature
         | 
| 647 | 
            +
            - plugins/line_tools/lib/line_tools.rb
         | 
| 648 | 
            +
            - plugins/line_tools/plugin.rb
         | 
| 649 | 
            +
            - plugins/macros/features/block_selection_in_macros.feature
         | 
| 650 | 
            +
            - plugins/macros/features/predictive_macros.feature
         | 
| 651 | 
            +
            - plugins/macros/features/record_and_run_macro.feature
         | 
| 652 | 
            +
            - plugins/macros/features/step_definitions/macro_steps.rb
         | 
| 653 | 
            +
            - plugins/macros/features/step_definitions/prediction_steps.rb
         | 
| 654 | 
            +
            - plugins/macros/features/support/env.rb
         | 
| 655 | 
            +
            - plugins/macros/lib/macros/action_sequence.rb
         | 
| 656 | 
            +
            - plugins/macros/lib/macros/commands.rb
         | 
| 657 | 
            +
            - plugins/macros/lib/macros/macro.rb
         | 
| 658 | 
            +
            - plugins/macros/lib/macros/manager_controller.rb
         | 
| 659 | 
            +
            - plugins/macros/lib/macros/predictive/document_controller.rb
         | 
| 660 | 
            +
            - plugins/macros/lib/macros/predictive/sequence_finder.rb
         | 
| 661 | 
            +
            - plugins/macros/lib/macros.rb
         | 
| 662 | 
            +
            - plugins/macros/plugin.rb
         | 
| 663 | 
            +
            - plugins/macros/spec/macros/predictive/sequence_finder_spec.rb
         | 
| 664 | 
            +
            - plugins/macros/spec/spec_helper.rb
         | 
| 665 | 
            +
            - plugins/macros/views/macro_manager.html.erb
         | 
| 666 | 
            +
            - plugins/my_plugin/lib/my_plugin.rb
         | 
| 667 | 
            +
            - plugins/my_plugin/plugin.rb
         | 
| 668 | 
            +
            - plugins/open_default_app/lib/open_default_app.rb
         | 
| 669 | 
            +
            - plugins/open_default_app/plugin.rb
         | 
| 670 | 
            +
            - plugins/open_default_app/screenshot.png
         | 
| 671 | 
            +
            - plugins/pair_highlighter/lib/pair_highlighter/document_controller.rb
         | 
| 672 | 
            +
            - plugins/pair_highlighter/lib/pair_highlighter.rb
         | 
| 673 | 
            +
            - plugins/pair_highlighter/plugin.rb
         | 
| 674 | 
            +
            - plugins/plugin_manager_ui/lib/plugin_manager_ui.rb
         | 
| 675 | 
            +
            - plugins/plugin_manager_ui/plugin.rb
         | 
| 676 | 
            +
            - plugins/plugin_manager_ui/views/index.html.erb
         | 
| 677 | 
            +
            - plugins/project/features/close_directory_tree.feature
         | 
| 678 | 
            +
            - plugins/project/features/find_file.feature
         | 
| 679 | 
            +
            - plugins/project/features/highlight_focussed_tab.feature
         | 
| 680 | 
            +
            - plugins/project/features/move_and_rename_files.feature
         | 
| 681 | 
            +
            - plugins/project/features/open_and_save_files.feature
         | 
| 682 | 
            +
            - plugins/project/features/open_directory_tree.feature
         | 
| 683 | 
            +
            - plugins/project/features/refresh_directory_tree.feature
         | 
| 684 | 
            +
            - plugins/project/features/step_definitions/directory_steps.rb
         | 
| 685 | 
            +
            - plugins/project/features/step_definitions/drb_steps.rb
         | 
| 686 | 
            +
            - plugins/project/features/step_definitions/file_steps.rb
         | 
| 687 | 
            +
            - plugins/project/features/step_definitions/find_file_steps.rb
         | 
| 688 | 
            +
            - plugins/project/features/step_definitions/project_tree_steps.rb
         | 
| 689 | 
            +
            - plugins/project/features/sub_project.feature
         | 
| 690 | 
            +
            - plugins/project/features/support/env.rb
         | 
| 691 | 
            +
            - plugins/project/features/watch_for_modified_files.feature
         | 
| 692 | 
            +
            - plugins/project/lib/project/adapters/local.rb
         | 
| 693 | 
            +
            - plugins/project/lib/project/adapters/remote.rb
         | 
| 694 | 
            +
            - plugins/project/lib/project/adapters/remote_protocols/ftp.rb
         | 
| 695 | 
            +
            - plugins/project/lib/project/adapters/remote_protocols/protocol.rb
         | 
| 696 | 
            +
            - plugins/project/lib/project/adapters/remote_protocols/sftp.rb
         | 
| 697 | 
            +
            - plugins/project/lib/project/commands.rb
         | 
| 698 | 
            +
            - plugins/project/lib/project/dir_controller.rb
         | 
| 699 | 
            +
            - plugins/project/lib/project/dir_mirror.rb
         | 
| 700 | 
            +
            - plugins/project/lib/project/drb_service.rb
         | 
| 701 | 
            +
            - plugins/project/lib/project/file_list.rb
         | 
| 702 | 
            +
            - plugins/project/lib/project/file_mirror.rb
         | 
| 703 | 
            +
            - plugins/project/lib/project/find_file_dialog.rb
         | 
| 704 | 
            +
            - plugins/project/lib/project/find_recent_dialog.rb
         | 
| 705 | 
            +
            - plugins/project/lib/project/manager.rb
         | 
| 706 | 
            +
            - plugins/project/lib/project/project_tree_controller.rb
         | 
| 707 | 
            +
            - plugins/project/lib/project/recent.rb
         | 
| 708 | 
            +
            - plugins/project/lib/project/sub_project.rb
         | 
| 709 | 
            +
            - plugins/project/lib/project/support/recycle.js
         | 
| 710 | 
            +
            - plugins/project/lib/project/support/trash.rb
         | 
| 711 | 
            +
            - plugins/project/lib/project.rb
         | 
| 712 | 
            +
            - plugins/project/plugin.rb
         | 
| 713 | 
            +
            - plugins/project/spec/fixture_helper.rb
         | 
| 714 | 
            +
            - plugins/project/spec/project/adapters/remote_protocols/ftp_spec.rb
         | 
| 715 | 
            +
            - plugins/project/spec/project/adapters/remote_protocols/sftp_spec.rb
         | 
| 716 | 
            +
            - plugins/project/spec/project/adapters/remote_spec.rb
         | 
| 717 | 
            +
            - plugins/project/spec/project/dir_mirror_spec.rb
         | 
| 718 | 
            +
            - plugins/project/spec/project/file_list_spec.rb
         | 
| 719 | 
            +
            - plugins/project/spec/project/file_mirror_spec.rb
         | 
| 720 | 
            +
            - plugins/project/spec/spec_helper.rb
         | 
| 721 | 
            +
            - plugins/project/views/bulk_rename.html.erb
         | 
| 722 | 
            +
            - plugins/project_search/features/support/env.rb
         | 
| 723 | 
            +
            - plugins/project_search/features/word_search.feature
         | 
| 724 | 
            +
            - plugins/project_search/lib/project_search/binary_data_detector.rb
         | 
| 725 | 
            +
            - plugins/project_search/lib/project_search/commands.rb
         | 
| 726 | 
            +
            - plugins/project_search/lib/project_search/hit.rb
         | 
| 727 | 
            +
            - plugins/project_search/lib/project_search/images/spinner.gif
         | 
| 728 | 
            +
            - plugins/project_search/lib/project_search/lucene_index.rb
         | 
| 729 | 
            +
            - plugins/project_search/lib/project_search/lucene_refresh.rb
         | 
| 730 | 
            +
            - plugins/project_search/lib/project_search/project.rb
         | 
| 731 | 
            +
            - plugins/project_search/lib/project_search/query.rb
         | 
| 732 | 
            +
            - plugins/project_search/lib/project_search/stylesheets/style.css
         | 
| 733 | 
            +
            - plugins/project_search/lib/project_search/views/_file.html.erb
         | 
| 734 | 
            +
            - plugins/project_search/lib/project_search/views/index.html.erb
         | 
| 735 | 
            +
            - plugins/project_search/lib/project_search/word_search.rb
         | 
| 736 | 
            +
            - plugins/project_search/lib/project_search/word_search_controller.rb
         | 
| 737 | 
            +
            - plugins/project_search/lib/project_search.rb
         | 
| 738 | 
            +
            - plugins/project_search/plugin.rb
         | 
| 739 | 
            +
            - plugins/project_search/spec/fixtures/project/binary_file.bin
         | 
| 740 | 
            +
            - plugins/project_search/spec/fixtures/project/foo.txt
         | 
| 741 | 
            +
            - plugins/project_search/spec/fixtures/project/qux.rb
         | 
| 742 | 
            +
            - plugins/project_search/spec/project_search/binary_data_detector_spec.rb
         | 
| 743 | 
            +
            - plugins/project_search/spec/project_search/word_search_spec.rb
         | 
| 744 | 
            +
            - plugins/project_search/spec/spec_helper.rb
         | 
| 745 | 
            +
            - plugins/redcar/features/alter_font_size.feature
         | 
| 746 | 
            +
            - plugins/redcar/features/goto_line_command.feature
         | 
| 747 | 
            +
            - plugins/redcar/features/navigation_history.feature
         | 
| 748 | 
            +
            - plugins/redcar/features/step_definitions/env.rb
         | 
| 749 | 
            +
            - plugins/redcar/features/step_definitions/font_steps.rb
         | 
| 750 | 
            +
            - plugins/redcar/features/text_editing.feature
         | 
| 751 | 
            +
            - plugins/redcar/features/text_navigation.feature
         | 
| 752 | 
            +
            - plugins/redcar/plugin.rb
         | 
| 753 | 
            +
            - plugins/redcar/redcar.rb
         | 
| 754 | 
            +
            - plugins/redcar_debug/lib/redcar_debug.rb
         | 
| 755 | 
            +
            - plugins/redcar_debug/plugin.rb
         | 
| 756 | 
            +
            - plugins/redcar_debug/views/history.html.erb
         | 
| 757 | 
            +
            - plugins/redcar_debug/views/index.html.erb
         | 
| 758 | 
            +
            - plugins/repl/features/command_editing.feature
         | 
| 759 | 
            +
            - plugins/repl/features/command_history.feature
         | 
| 760 | 
            +
            - plugins/repl/features/step_definitions/repl_steps.rb
         | 
| 761 | 
            +
            - plugins/repl/features/support/env.rb
         | 
| 762 | 
            +
            - plugins/repl/features/support/fake_repl.rb
         | 
| 763 | 
            +
            - plugins/repl/lib/repl/repl_command.rb
         | 
| 764 | 
            +
            - plugins/repl/lib/repl/repl_mirror.rb
         | 
| 765 | 
            +
            - plugins/repl/lib/repl/repl_tab.rb
         | 
| 766 | 
            +
            - plugins/repl/lib/repl.rb
         | 
| 767 | 
            +
            - plugins/repl/plugin.rb
         | 
| 768 | 
            +
            - plugins/repl/spec/repl/repl_mirror_spec.rb
         | 
| 769 | 
            +
            - plugins/repl/spec/spec_helper.rb
         | 
| 770 | 
            +
            - plugins/repl_swt/lib/repl_swt/key_listener.rb
         | 
| 771 | 
            +
            - plugins/repl_swt/lib/repl_swt.rb
         | 
| 772 | 
            +
            - plugins/repl_swt/plugin.rb
         | 
| 773 | 
            +
            - plugins/ruby/features/fixtures/test.rb
         | 
| 774 | 
            +
            - plugins/ruby/features/support/env.rb
         | 
| 775 | 
            +
            - plugins/ruby/features/syntax_check_ruby.feature
         | 
| 776 | 
            +
            - plugins/ruby/lib/ruby/repl_mirror.rb
         | 
| 777 | 
            +
            - plugins/ruby/lib/ruby/syntax_checker.rb
         | 
| 778 | 
            +
            - plugins/ruby/lib/ruby.rb
         | 
| 779 | 
            +
            - plugins/ruby/plugin.rb
         | 
| 780 | 
            +
            - plugins/ruby/spec/ruby/repl_mirror_spec.rb
         | 
| 781 | 
            +
            - plugins/ruby/spec/spec_helper.rb
         | 
| 782 | 
            +
            - plugins/runnables/features/command_tree.feature
         | 
| 783 | 
            +
            - plugins/runnables/features/file_runner_input.feature
         | 
| 784 | 
            +
            - plugins/runnables/features/parameter_input.feature
         | 
| 785 | 
            +
            - plugins/runnables/features/run_alternate_command.feature
         | 
| 786 | 
            +
            - plugins/runnables/features/run_command_tab.feature
         | 
| 787 | 
            +
            - plugins/runnables/features/step_definitions/runnable_steps.rb
         | 
| 788 | 
            +
            - plugins/runnables/features/support/env.rb
         | 
| 789 | 
            +
            - plugins/runnables/lib/runnables/command_output_controller.rb
         | 
| 790 | 
            +
            - plugins/runnables/lib/runnables/commands.rb
         | 
| 791 | 
            +
            - plugins/runnables/lib/runnables/output_processor.rb
         | 
| 792 | 
            +
            - plugins/runnables/lib/runnables/running_process_checker.rb
         | 
| 793 | 
            +
            - plugins/runnables/lib/runnables/tree_mirror/nodes/runnable.rb
         | 
| 794 | 
            +
            - plugins/runnables/lib/runnables/tree_mirror/nodes/runnable_group.rb
         | 
| 795 | 
            +
            - plugins/runnables/lib/runnables/tree_mirror/nodes/runnable_type_group.rb
         | 
| 796 | 
            +
            - plugins/runnables/lib/runnables/tree_mirror/tree_controller.rb
         | 
| 797 | 
            +
            - plugins/runnables/lib/runnables/tree_mirror/tree_mirror.rb
         | 
| 798 | 
            +
            - plugins/runnables/lib/runnables.rb
         | 
| 799 | 
            +
            - plugins/runnables/plugin.rb
         | 
| 800 | 
            +
            - plugins/runnables/spec/runnables/output_processor_spec.rb
         | 
| 801 | 
            +
            - plugins/runnables/spec/spec_helper.rb
         | 
| 802 | 
            +
            - plugins/runnables/views/basic_ansi.css
         | 
| 803 | 
            +
            - plugins/runnables/views/color_tester.html
         | 
| 804 | 
            +
            - plugins/runnables/views/command_output.html.erb
         | 
| 805 | 
            +
            - plugins/runnables/views/default.css
         | 
| 806 | 
            +
            - plugins/runnables/views/indicator.gif
         | 
| 807 | 
            +
            - plugins/runnables/views/redcar_small_icon.png
         | 
| 808 | 
            +
            - plugins/runnables/views/reset.css
         | 
| 809 | 
            +
            - plugins/runnables/views/running_test.html
         | 
| 810 | 
            +
            - plugins/runnables/views/wedgeDown.png
         | 
| 811 | 
            +
            - plugins/runnables/views/wedgeRight.png
         | 
| 812 | 
            +
            - plugins/scm/lib/scm/commands.rb
         | 
| 813 | 
            +
            - plugins/scm/lib/scm/commit_mirror.rb
         | 
| 814 | 
            +
            - plugins/scm/lib/scm/diff_mirror.rb
         | 
| 815 | 
            +
            - plugins/scm/lib/scm/errors.rb
         | 
| 816 | 
            +
            - plugins/scm/lib/scm/model.rb
         | 
| 817 | 
            +
            - plugins/scm/lib/scm/scm_changes_controller.rb
         | 
| 818 | 
            +
            - plugins/scm/lib/scm/scm_changes_mirror/change.rb
         | 
| 819 | 
            +
            - plugins/scm/lib/scm/scm_changes_mirror/changes_node.rb
         | 
| 820 | 
            +
            - plugins/scm/lib/scm/scm_changes_mirror/drag_controller.rb
         | 
| 821 | 
            +
            - plugins/scm/lib/scm/scm_changes_mirror.rb
         | 
| 822 | 
            +
            - plugins/scm/lib/scm/scm_commits_controller.rb
         | 
| 823 | 
            +
            - plugins/scm/lib/scm/scm_commits_mirror/commit.rb
         | 
| 824 | 
            +
            - plugins/scm/lib/scm/scm_commits_mirror/commits_node.rb
         | 
| 825 | 
            +
            - plugins/scm/lib/scm/scm_commits_mirror.rb
         | 
| 826 | 
            +
            - plugins/scm/lib/scm.rb
         | 
| 827 | 
            +
            - plugins/scm/plugin.rb
         | 
| 828 | 
            +
            - plugins/scm_git/lib/scm_git/change.rb
         | 
| 829 | 
            +
            - plugins/scm_git/lib/scm_git/commit.rb
         | 
| 830 | 
            +
            - plugins/scm_git/lib/scm_git/config_file.rb
         | 
| 831 | 
            +
            - plugins/scm_git/lib/scm_git.rb
         | 
| 832 | 
            +
            - plugins/scm_git/plugin.rb
         | 
| 833 | 
            +
            - plugins/scm_hg/lib/scm_hg.rb
         | 
| 834 | 
            +
            - plugins/scm_hg/plugin.rb
         | 
| 835 | 
            +
            - plugins/scm_svn/features/add_and_commit.feature
         | 
| 836 | 
            +
            - plugins/scm_svn/features/checkout.feature
         | 
| 837 | 
            +
            - plugins/scm_svn/features/edit_and_index.feature
         | 
| 838 | 
            +
            - plugins/scm_svn/features/ignore_files.feature
         | 
| 839 | 
            +
            - plugins/scm_svn/features/merge.feature
         | 
| 840 | 
            +
            - plugins/scm_svn/features/resolve_conflict.feature
         | 
| 841 | 
            +
            - plugins/scm_svn/features/revert_and_delete.feature
         | 
| 842 | 
            +
            - plugins/scm_svn/features/step_definitions/branch_and_merge_steps.rb
         | 
| 843 | 
            +
            - plugins/scm_svn/features/step_definitions/checkout_steps.rb
         | 
| 844 | 
            +
            - plugins/scm_svn/features/step_definitions/edit_and_index_steps.rb
         | 
| 845 | 
            +
            - plugins/scm_svn/features/step_definitions/scm_svn_steps.rb
         | 
| 846 | 
            +
            - plugins/scm_svn/features/support/env.rb
         | 
| 847 | 
            +
            - plugins/scm_svn/features/switch_branches.feature
         | 
| 848 | 
            +
            - plugins/scm_svn/features/update.feature
         | 
| 849 | 
            +
            - plugins/scm_svn/lib/scm_svn/change.rb
         | 
| 850 | 
            +
            - plugins/scm_svn/lib/scm_svn.rb
         | 
| 851 | 
            +
            - plugins/scm_svn/LICENSE
         | 
| 852 | 
            +
            - plugins/scm_svn/plugin.rb
         | 
| 853 | 
            +
            - plugins/snippets/features/snippet_indenting.feature
         | 
| 854 | 
            +
            - plugins/snippets/features/snippets.feature
         | 
| 855 | 
            +
            - plugins/snippets/features/step_definitions/snippet_steps.rb
         | 
| 856 | 
            +
            - plugins/snippets/features/support/env.rb
         | 
| 857 | 
            +
            - plugins/snippets/lib/snippets/document_controller.rb
         | 
| 858 | 
            +
            - plugins/snippets/lib/snippets/explorer.rb
         | 
| 859 | 
            +
            - plugins/snippets/lib/snippets/tab_handler.rb
         | 
| 860 | 
            +
            - plugins/snippets/lib/snippets.rb
         | 
| 861 | 
            +
            - plugins/snippets/plugin.rb
         | 
| 862 | 
            +
            - plugins/splash_screen/plugin.rb
         | 
| 863 | 
            +
            - plugins/splash_screen/splash_screen.rb
         | 
| 864 | 
            +
            - plugins/strip_trailing_spaces/features/fixtures/test.txt
         | 
| 865 | 
            +
            - plugins/strip_trailing_spaces/features/strip_trailing_spaces.feature
         | 
| 866 | 
            +
            - plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb
         | 
| 867 | 
            +
            - plugins/strip_trailing_spaces/plugin.rb
         | 
| 868 | 
            +
            - plugins/syntax_check/features/step_definitions/syntax_check_steps.rb
         | 
| 869 | 
            +
            - plugins/syntax_check/features/support/env.rb
         | 
| 870 | 
            +
            - plugins/syntax_check/lib/syntax_check/annotation.rb
         | 
| 871 | 
            +
            - plugins/syntax_check/lib/syntax_check/checker.rb
         | 
| 872 | 
            +
            - plugins/syntax_check/lib/syntax_check/error.rb
         | 
| 873 | 
            +
            - plugins/syntax_check/lib/syntax_check.rb
         | 
| 874 | 
            +
            - plugins/syntax_check/plugin.rb
         | 
| 875 | 
            +
            - plugins/syntax_check/README
         | 
| 876 | 
            +
            - plugins/task_manager/lib/task_manager.rb
         | 
| 877 | 
            +
            - plugins/task_manager/plugin.rb
         | 
| 878 | 
            +
            - plugins/task_manager/views/index.html.erb
         | 
| 879 | 
            +
            - plugins/test_runner/lib/test_runner/jasmine_test_runner.rb
         | 
| 880 | 
            +
            - plugins/test_runner/lib/test_runner/rspec_runner.rb
         | 
| 881 | 
            +
            - plugins/test_runner/lib/test_runner/run_test_command.rb
         | 
| 882 | 
            +
            - plugins/test_runner/lib/test_runner/runnable_test_runner.rb
         | 
| 883 | 
            +
            - plugins/test_runner/lib/test_runner.rb
         | 
| 884 | 
            +
            - plugins/test_runner/plugin.rb
         | 
| 885 | 
            +
            - plugins/test_runner/spec/run_test_command_spec.rb
         | 
| 886 | 
            +
            - plugins/test_runner/spec/spec_helper.rb
         | 
| 887 | 
            +
            - plugins/textmate/features/bundle_tree.feature
         | 
| 888 | 
            +
            - plugins/textmate/features/step_definitions/tree_steps.rb
         | 
| 889 | 
            +
            - plugins/textmate/features/support/env.rb
         | 
| 890 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/info.plist
         | 
| 891 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/If.tmSnippet
         | 
| 892 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/If__Else.tmSnippet
         | 
| 893 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/Include.tmSnippet
         | 
| 894 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/Loop.tmSnippet
         | 
| 895 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/next_If__Else.tmSnippet
         | 
| 896 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/Unless.tmSnippet
         | 
| 897 | 
            +
            - plugins/textmate/features/support/test_bundle.tmbundle/Snippets/Var.tmSnippet
         | 
| 898 | 
            +
            - plugins/textmate/lib/textmate/bundle.rb
         | 
| 899 | 
            +
            - plugins/textmate/lib/textmate/commands.rb
         | 
| 900 | 
            +
            - plugins/textmate/lib/textmate/environment.rb
         | 
| 901 | 
            +
            - plugins/textmate/lib/textmate/plist.rb
         | 
| 902 | 
            +
            - plugins/textmate/lib/textmate/preference.rb
         | 
| 903 | 
            +
            - plugins/textmate/lib/textmate/snippet.rb
         | 
| 904 | 
            +
            - plugins/textmate/lib/textmate/tree_mirror.rb
         | 
| 905 | 
            +
            - plugins/textmate/lib/textmate.rb
         | 
| 906 | 
            +
            - plugins/textmate/plugin.rb
         | 
| 907 | 
            +
            - plugins/textmate/views/installed_bundles.html.erb
         | 
| 908 | 
            +
            - plugins/todo_list/features/support/env.rb
         | 
| 909 | 
            +
            - plugins/todo_list/features/todo_list.feature
         | 
| 910 | 
            +
            - plugins/todo_list/lib/todo_list/file_parser.rb
         | 
| 911 | 
            +
            - plugins/todo_list/lib/todo_list/todo_controller.rb
         | 
| 912 | 
            +
            - plugins/todo_list/lib/todo_list.rb
         | 
| 913 | 
            +
            - plugins/todo_list/plugin.rb
         | 
| 914 | 
            +
            - plugins/todo_list/README.md
         | 
| 915 | 
            +
            - plugins/todo_list/spec/fixtures/project/FIXME.file
         | 
| 916 | 
            +
            - plugins/todo_list/spec/fixtures/project/ignored_directory/TODO.file
         | 
| 917 | 
            +
            - plugins/todo_list/spec/fixtures/project/NOTE.ignored.file
         | 
| 918 | 
            +
            - plugins/todo_list/spec/fixtures/project/OPTIMIZE_colon.file
         | 
| 919 | 
            +
            - plugins/todo_list/spec/fixtures/project/XXX.ignored
         | 
| 920 | 
            +
            - plugins/todo_list/spec/fixtures/settings.rb
         | 
| 921 | 
            +
            - plugins/todo_list/spec/spec_helper.rb
         | 
| 922 | 
            +
            - plugins/todo_list/spec/todo_list/file_parser_spec.rb
         | 
| 923 | 
            +
            - plugins/todo_list/views/default.css
         | 
| 924 | 
            +
            - plugins/todo_list/views/index.html.erb
         | 
| 925 | 
            +
            - plugins/todo_list/views/redcar_small_icon.png
         | 
| 926 | 
            +
            - plugins/tree_view_swt/lib/tree_view_swt.rb
         | 
| 927 | 
            +
            - plugins/tree_view_swt/plugin.rb
         | 
| 928 | 
            +
            - plugins/web_bookmarks/features/bookmark.feature
         | 
| 929 | 
            +
            - plugins/web_bookmarks/features/fixtures/other.html
         | 
| 930 | 
            +
            - plugins/web_bookmarks/features/fixtures/sample.html
         | 
| 931 | 
            +
            - plugins/web_bookmarks/features/step_definitions/web_steps.rb
         | 
| 932 | 
            +
            - plugins/web_bookmarks/features/support/env.rb
         | 
| 933 | 
            +
            - plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb
         | 
| 934 | 
            +
            - plugins/web_bookmarks/lib/web_bookmarks/commands.rb
         | 
| 935 | 
            +
            - plugins/web_bookmarks/lib/web_bookmarks/tree.rb
         | 
| 936 | 
            +
            - plugins/web_bookmarks/lib/web_bookmarks.rb
         | 
| 937 | 
            +
            - plugins/web_bookmarks/plugin.rb
         | 
| 938 | 
            +
            - plugins/web_bookmarks/Screenshot.png
         | 
| 939 | 
            +
            - Gemfile
         | 
| 946 940 | 
             
            homepage: http://github.com/danlucraft/redcar
         | 
| 947 941 | 
             
            licenses: []
         | 
| 948 | 
            -
             | 
| 949 942 | 
             
            post_install_message: 
         | 
| 950 943 | 
             
            rdoc_options: []
         | 
| 951 | 
            -
             | 
| 952 | 
            -
             | 
| 953 | 
            -
             | 
| 954 | 
            -
            required_ruby_version: !ruby/object:Gem::Requirement 
         | 
| 944 | 
            +
            require_paths:
         | 
| 945 | 
            +
            - lib
         | 
| 946 | 
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         | 
| 955 947 | 
             
              none: false
         | 
| 956 | 
            -
              requirements: | 
| 957 | 
            -
             | 
| 958 | 
            -
             | 
| 959 | 
            -
             | 
| 960 | 
            -
            required_rubygems_version: !ruby/object:Gem::Requirement | 
| 948 | 
            +
              requirements:
         | 
| 949 | 
            +
              - - ! '>='
         | 
| 950 | 
            +
                - !ruby/object:Gem::Version
         | 
| 951 | 
            +
                  version: '0'
         | 
| 952 | 
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         | 
| 961 953 | 
             
              none: false
         | 
| 962 | 
            -
              requirements: | 
| 963 | 
            -
             | 
| 964 | 
            -
             | 
| 965 | 
            -
             | 
| 954 | 
            +
              requirements:
         | 
| 955 | 
            +
              - - ! '>'
         | 
| 956 | 
            +
                - !ruby/object:Gem::Version
         | 
| 957 | 
            +
                  version: 1.3.1
         | 
| 966 958 | 
             
            requirements: []
         | 
| 967 | 
            -
             | 
| 968 959 | 
             
            rubyforge_project: 
         | 
| 969 | 
            -
            rubygems_version: 1.8. | 
| 960 | 
            +
            rubygems_version: 1.8.10
         | 
| 970 961 | 
             
            signing_key: 
         | 
| 971 962 | 
             
            specification_version: 3
         | 
| 972 963 | 
             
            summary: A pure Ruby text editor
         | 
| 973 964 | 
             
            test_files: []
         | 
| 974 | 
            -
             |