redcar 0.8.1 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +41 -1
- data/README.md +1 -1
- data/Rakefile +5 -6
- data/lib/plugin_manager/lib/plugin_manager.rb +1 -2
- data/lib/redcar.rb +19 -14
- data/lib/redcar/installer.rb +21 -17
- data/lib/redcar/runner.rb +10 -7
- data/lib/redcar/usage.rb +1 -0
- data/lib/redcar_quick_start.rb +8 -12
- data/lib/regex_replace.rb +3 -3
- data/plugins/application/features/step_definitions/menu_steps.rb +10 -0
- data/plugins/application/features/step_definitions/speedbar_steps.rb +8 -2
- data/plugins/application/features/step_definitions/tree_steps.rb +48 -6
- data/plugins/application/features/step_definitions/window_steps.rb +9 -4
- data/plugins/application/features/support/env.rb +20 -1
- data/plugins/application/features/support/fake_event.rb +14 -0
- data/plugins/application/lib/application.rb +29 -12
- data/plugins/application/lib/application/dialogs/filter_list_dialog.rb +19 -0
- data/plugins/application/lib/application/speedbar.rb +23 -17
- data/plugins/application/lib/application/tab.rb +20 -15
- data/plugins/application/lib/application/treebook.rb +10 -7
- data/plugins/application/lib/application/window.rb +1 -1
- data/plugins/application/plugin.rb +1 -1
- data/plugins/application_swt/lib/application_swt/dialog_adapter.rb +4 -4
- data/plugins/application_swt/lib/application_swt/dialogs/filter_list_dialog_controller.rb +15 -4
- data/plugins/application_swt/lib/application_swt/icon.rb +3 -5
- data/plugins/application_swt/lib/application_swt/notebook/tab_drag_and_drop_listener.rb +4 -4
- data/plugins/application_swt/lib/application_swt/notebook/tab_transfer.rb +5 -5
- data/plugins/application_swt/lib/application_swt/speedbar.rb +34 -120
- data/plugins/application_swt/lib/application_swt/speedbar/button_item.rb +20 -0
- data/plugins/application_swt/lib/application_swt/speedbar/combo_item.rb +38 -0
- data/plugins/application_swt/lib/application_swt/speedbar/label_item.rb +15 -0
- data/plugins/application_swt/lib/application_swt/speedbar/slider_item.rb +32 -0
- data/plugins/application_swt/lib/application_swt/speedbar/text_box_item.rb +36 -0
- data/plugins/application_swt/lib/application_swt/speedbar/toggle_item.rb +29 -0
- data/plugins/application_swt/lib/application_swt/tab.rb +1 -3
- data/plugins/application_swt/lib/application_swt/toolbar.rb +19 -20
- data/plugins/application_swt/lib/application_swt/treebook.rb +24 -9
- data/plugins/application_swt/lib/application_swt/window.rb +110 -98
- data/plugins/application_swt/lib/swt/vtab_folder.rb +77 -32
- data/plugins/application_swt/lib/swt/vtab_item.rb +9 -0
- data/plugins/application_swt/lib/swt/vtab_label.rb +63 -23
- data/plugins/application_swt/plugin.rb +1 -1
- data/plugins/clipboard-viewer/lib/clipboard_viewer/clipboard_bar.rb +2 -2
- data/plugins/comment/features/line_comment.feature +116 -4
- data/plugins/comment/lib/comment.rb +18 -16
- data/plugins/connection_manager/lib/connection_manager/commands.rb +1 -1
- data/plugins/connection_manager/lib/connection_manager/private_key_store.rb +5 -3
- data/plugins/declarations/lib/declarations.rb +1 -1
- data/plugins/declarations/lib/declarations/parser.rb +68 -20
- data/plugins/document_search/features/replace.feature +18 -0
- data/plugins/document_search/lib/document_search.rb +37 -54
- data/plugins/document_search/lib/document_search/replace_all_command.rb +27 -0
- data/plugins/document_search/lib/document_search/replace_command.rb +38 -0
- data/plugins/document_search/lib/document_search/replace_next_command.rb +27 -0
- data/plugins/document_search/lib/document_search/search_and_replace.rb +17 -24
- data/plugins/edit_view/features/step_definitions/editing_steps.rb +4 -4
- data/plugins/edit_view/features/step_definitions/tab_steps.rb +9 -0
- data/plugins/edit_view/features/step_definitions/window_steps.rb +0 -12
- data/plugins/edit_view/lib/edit_view/document.rb +2 -0
- data/plugins/edit_view/lib/edit_view/document/command.rb +8 -8
- data/plugins/edit_view/lib/edit_view/edit_tab.rb +21 -7
- data/plugins/edit_view/lib/edit_view/select_font_dialog.rb +6 -0
- data/plugins/edit_view/lib/edit_view/select_theme_dialog.rb +6 -0
- data/plugins/edit_view_swt/lib/edit_view_swt.rb +92 -43
- data/plugins/edit_view_swt/lib/edit_view_swt/document.rb +17 -4
- data/plugins/find-in-project/lib/find_in_project.rb +1 -4
- data/plugins/find-in-project/lib/find_in_project/commands.rb +0 -14
- data/plugins/find-in-project/lib/find_in_project/controllers.rb +12 -0
- data/plugins/find-in-project/lib/find_in_project/views/index.html.erb +5 -0
- data/plugins/groovy/features/fixtures/test.groovy +0 -0
- data/plugins/groovy/features/step_definitions/groovy_steps.rb +27 -0
- data/plugins/groovy/features/support/env.rb +27 -0
- data/plugins/groovy/features/syntax_check_groovy.feature +72 -0
- data/plugins/groovy/lib/syntax_check/groovy.rb +76 -0
- data/plugins/groovy/plugin.rb +7 -0
- data/plugins/help/lib/help.rb +28 -4
- data/plugins/help/lib/help/help_tab.rb +11 -0
- data/plugins/help/lib/help/view_controller.rb +25 -0
- data/plugins/help/plugin.rb +2 -1
- data/plugins/{view_shortcuts → help}/views/default.css +0 -0
- data/plugins/{view_shortcuts → help}/views/index.html.erb +1 -1
- data/plugins/{view_shortcuts → help}/views/redcar_small_icon.png +0 -0
- data/plugins/html_view/features/browser_bar.feature +47 -0
- data/plugins/html_view/features/fixtures/other.html +1 -0
- data/plugins/html_view/features/fixtures/sample.html +1 -0
- data/plugins/html_view/features/step_definitions/html_view_steps.rb +45 -5
- data/plugins/html_view/features/support/env.rb +26 -0
- data/plugins/html_view/features/web_preview.feature +21 -0
- data/plugins/html_view/lib/html_controller.rb +5 -5
- data/plugins/html_view/lib/html_view.rb +62 -10
- data/plugins/{web_bookmarks/lib/web_bookmarks → html_view/lib/html_view}/browser_bar.rb +32 -20
- data/plugins/html_view/lib/html_view/commands.rb +64 -0
- data/plugins/{web_bookmarks/lib/web_bookmarks/view_controller.rb → html_view/lib/html_view/default_controller.rb} +7 -6
- data/plugins/html_view/lib/html_view/html_tab.rb +17 -6
- data/plugins/html_view/plugin.rb +3 -3
- data/plugins/{web_bookmarks → html_view}/views/index.html.erb +0 -0
- data/plugins/javascript/features/fixtures/test.js +0 -0
- data/plugins/javascript/features/support/env.rb +4 -0
- data/plugins/javascript/features/syntax_check_javascript.feature +27 -0
- data/plugins/javascript/lib/syntax_check/javascript.rb +52 -0
- data/plugins/javascript/plugin.rb +7 -0
- data/plugins/javascript/vendor/jslint.js +539 -0
- data/plugins/macros/lib/macros/commands.rb +3 -3
- data/plugins/open_default_app/lib/open_default_app.rb +29 -3
- data/plugins/open_default_app/plugin.rb +1 -1
- data/plugins/outline_view/features/outline_view.feature +79 -0
- data/plugins/outline_view/features/step_definitions/outline_steps.rb +45 -0
- data/plugins/outline_view/lib/outline_view.rb +1 -1
- data/plugins/outline_view/spec/fixtures/some_project/javascript.js +10 -0
- data/plugins/outline_view/spec/fixtures/some_project/nothing_to_see.rb +0 -0
- data/plugins/outline_view/spec/fixtures/some_project/one_lonely_class.rb +2 -0
- data/plugins/outline_view/spec/fixtures/some_project/similar_names.rb +18 -0
- data/plugins/outline_view/spec/fixtures/some_project/something_fancy.rb +736 -0
- data/plugins/outline_view/spec/fixtures/some_project/trailing_space.rb +5 -0
- data/plugins/outline_view_swt/lib/outline_view_swt.rb +17 -19
- data/plugins/pair_highlighter/lib/pair_highlighter/document_controller.rb +1 -4
- data/plugins/plugin_manager_ui/lib/plugin_manager_ui.rb +12 -3
- data/plugins/project/features/close_directory_tree.feature +27 -0
- data/plugins/project/features/highlight_focussed_tab.feature +45 -1
- data/plugins/project/features/open_and_save_files.feature +33 -0
- data/plugins/project/features/open_directory_tree.feature +37 -11
- data/plugins/project/features/step_definitions/directory_steps.rb +1 -1
- data/plugins/project/features/step_definitions/drb_steps.rb +40 -0
- data/plugins/project/features/support/env.rb +17 -0
- data/plugins/project/lib/project.rb +12 -2
- data/plugins/project/lib/project/commands.rb +101 -99
- data/plugins/project/lib/project/drb_service.rb +55 -65
- data/plugins/project/lib/project/manager.rb +29 -4
- data/plugins/project/lib/project/project_tree_controller.rb +24 -0
- data/plugins/project/lib/project/support/trash.rb +1 -0
- data/plugins/redcar/redcar.rb +100 -37
- data/plugins/redcar_debug/lib/redcar_debug.rb +3 -3
- data/plugins/repl/features/step_definitions/repl_steps.rb +3 -0
- data/plugins/repl/lib/repl.rb +4 -11
- data/plugins/repl/lib/repl/repl_tab.rb +26 -0
- data/plugins/ruby/features/fixtures/test.rb +0 -0
- data/plugins/ruby/features/support/env.rb +4 -0
- data/plugins/ruby/features/syntax_check_ruby.feature +25 -0
- data/plugins/runnables/features/command_tree.feature +28 -0
- data/plugins/runnables/lib/runnables.rb +1 -0
- data/plugins/runnables/lib/runnables/commands.rb +4 -4
- data/plugins/runnables/lib/runnables/output_processor.rb +5 -5
- data/plugins/runnables/lib/runnables/tree_mirror/tree_controller.rb +2 -7
- data/plugins/runnables/lib/runnables/tree_mirror/tree_mirror.rb +13 -8
- data/plugins/scm_git/lib/scm_git/change.rb +5 -5
- data/plugins/strip_trailing_spaces/features/fixtures/test.txt +3 -0
- data/plugins/strip_trailing_spaces/features/strip_trailing_spaces.feature +34 -0
- data/plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb +3 -38
- data/plugins/swt/lib/swt.rb +5 -13
- data/plugins/swt/lib/swt/full_swt.rb +15 -13
- data/plugins/syntax_check/features/step_definitions/syntax_check_steps.rb +7 -0
- data/plugins/syntax_check/lib/syntax_check.rb +21 -3
- data/plugins/syntax_check/lib/syntax_check/error.rb +4 -3
- data/plugins/task_manager/lib/task_manager.rb +1 -1
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Preferences/Autocompletions.tmPreferences +345 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Preferences/Symbol List Target.tmPreferences +22 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Snippets/Doc Banner.tmSnippet +20 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Syntaxes/Ant.tmLanguage +247 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/info.plist +55 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/Syntaxes/GroovyRepl.plist +40 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/info.plist +1 -1
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage +0 -1
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Sass.tmbundle/Syntaxes/Ruby Sass.tmLanguage +626 -0
- data/plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Sass.tmbundle/info.plist +16 -0
- data/plugins/todo_list/features/support/env.rb +8 -0
- data/plugins/todo_list/features/todo_list.feature +26 -0
- data/plugins/todo_list/lib/todo_list.rb +1 -0
- data/plugins/todo_list/lib/todo_list/file_parser.rb +23 -19
- data/plugins/todo_list/lib/todo_list/todo_controller.rb +60 -100
- data/plugins/todo_list/spec/fixtures/project/FIXME.file +3 -0
- data/plugins/todo_list/spec/fixtures/project/NOTE.ignored.file +1 -0
- data/plugins/todo_list/spec/fixtures/project/OPTIMIZE_colon.file +1 -0
- data/plugins/todo_list/spec/fixtures/project/XXX.ignored +1 -0
- data/plugins/todo_list/spec/fixtures/project/ignored_directory/TODO.file +2 -0
- data/plugins/todo_list/spec/fixtures/settings.rb +11 -0
- data/plugins/todo_list/spec/spec_helper.rb +6 -0
- data/plugins/todo_list/spec/todo_list/file_parser_spec.rb +35 -0
- data/plugins/tree/lib/tree.rb +1 -0
- data/plugins/tree/lib/tree/command.rb +5 -0
- data/plugins/web_bookmarks/features/bookmark.feature +37 -0
- data/plugins/web_bookmarks/features/fixtures/other.html +1 -0
- data/plugins/web_bookmarks/features/fixtures/sample.html +1 -0
- data/plugins/web_bookmarks/features/step_definitions/web_steps.rb +4 -0
- data/plugins/web_bookmarks/features/support/env.rb +26 -0
- data/plugins/web_bookmarks/lib/web_bookmarks.rb +0 -10
- data/plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb +10 -1
- data/plugins/web_bookmarks/lib/web_bookmarks/commands.rb +1 -47
- data/plugins/web_bookmarks/lib/web_bookmarks/tree.rb +21 -14
- data/{plugins/application → share}/icons/close.png +0 -0
- data/{plugins/application → share}/icons/darwin-file.png +0 -0
- data/{plugins/application → share}/icons/darwin-folder.png +0 -0
- data/share/icons/open-source-flipped.png +0 -0
- data/{plugins/application/icons/redcar_icon_beta_dev.png → share/icons/redcar-icon-beta-dev.png} +0 -0
- data/{plugins/application/icons/redcar_icon_beta.png → share/icons/redcar-icon-beta.png} +0 -0
- data/{plugins/application → share}/icons/redcar-splash.png +0 -0
- metadata +90 -30
- data/lib/redcar/jvm_options_probe.rb +0 -33
- data/plugins/document_search/lib/document_search/replace.rb +0 -113
- data/plugins/document_search/lib/document_search/search.rb +0 -45
- data/plugins/outline_view_swt/lib/icons/alias.png +0 -0
- data/plugins/outline_view_swt/lib/icons/assignment.png +0 -0
- data/plugins/outline_view_swt/lib/icons/attribute.png +0 -0
- data/plugins/outline_view_swt/lib/icons/class.png +0 -0
- data/plugins/outline_view_swt/lib/icons/interface.png +0 -0
- data/plugins/outline_view_swt/lib/icons/method.png +0 -0
- data/plugins/strip_trailing_spaces/CHANGELOG +0 -12
- data/plugins/strip_trailing_spaces/README.md +0 -32
- data/plugins/view_shortcuts/lib/view_shortcuts.rb +0 -52
- data/plugins/view_shortcuts/plugin.rb +0 -11
@@ -0,0 +1 @@
|
|
1
|
+
<html><b>Hello!!</b></html>
|
@@ -0,0 +1,26 @@
|
|
1
|
+
|
2
|
+
def web_fixtures_path
|
3
|
+
File.expand_path(File.dirname(__FILE__) + "/../../features/fixtures")
|
4
|
+
end
|
5
|
+
|
6
|
+
def bookmarks_file
|
7
|
+
File.join(web_fixtures_path, ".redcar","web_bookmarks.json")
|
8
|
+
end
|
9
|
+
|
10
|
+
def bookmarks_backup
|
11
|
+
File.join(web_fixtures_path, ".redcar","web_bookmarks.json.bak")
|
12
|
+
end
|
13
|
+
|
14
|
+
def reset_web_fixtures
|
15
|
+
FileUtils.rm(bookmarks_file) if File.exist?(bookmarks_file)
|
16
|
+
FileUtils.cp(bookmarks_backup,bookmarks_file)
|
17
|
+
end
|
18
|
+
|
19
|
+
Before do
|
20
|
+
reset_web_fixtures
|
21
|
+
end
|
22
|
+
|
23
|
+
After do
|
24
|
+
reset_web_fixtures
|
25
|
+
FileUtils.rm(bookmarks_file) if File.exist?(bookmarks_file)
|
26
|
+
end
|
@@ -1,8 +1,6 @@
|
|
1
1
|
require 'web_bookmarks/commands'
|
2
2
|
require 'web_bookmarks/bookmark'
|
3
|
-
require 'web_bookmarks/browser_bar'
|
4
3
|
require 'web_bookmarks/tree'
|
5
|
-
require 'web_bookmarks/view_controller'
|
6
4
|
|
7
5
|
module Redcar
|
8
6
|
class WebBookmarks
|
@@ -19,14 +17,6 @@ module Redcar
|
|
19
17
|
|
20
18
|
def self.menus
|
21
19
|
Redcar::Menu::Builder.build do
|
22
|
-
sub_menu "File" do
|
23
|
-
item "Web Preview", :command => WebBookmarks::FileWebPreview, :priority => 8
|
24
|
-
end
|
25
|
-
sub_menu "Edit" do
|
26
|
-
sub_menu "Document Navigation" do
|
27
|
-
item "Open Browser Bar", :command => WebBookmarks::OpenBrowserBar, :priority => 5
|
28
|
-
end
|
29
|
-
end
|
30
20
|
sub_menu "Project" do
|
31
21
|
item "Web Bookmarks", :command => WebBookmarks::ShowTree, :priority => 40
|
32
22
|
end
|
@@ -1,7 +1,16 @@
|
|
1
1
|
|
2
2
|
module Redcar
|
3
3
|
class WebBookmarks
|
4
|
-
|
4
|
+
class BookmarkReloadItem
|
5
|
+
include Redcar::Tree::Mirror::NodeMirror
|
6
|
+
|
7
|
+
def leaf?; true; end
|
8
|
+
def text; "Reload Bookmarks"; end
|
9
|
+
def icon; :"arrow_circle"; end
|
10
|
+
def children; []; end
|
11
|
+
end
|
12
|
+
|
13
|
+
class Bookmark
|
5
14
|
include Redcar::Tree::Mirror::NodeMirror
|
6
15
|
attr_reader :url
|
7
16
|
|
@@ -4,44 +4,6 @@ require 'java'
|
|
4
4
|
module Redcar
|
5
5
|
class WebBookmarks
|
6
6
|
|
7
|
-
# Open a HtmlTab for displaying web content
|
8
|
-
class DisplayWebContent < Redcar::Command
|
9
|
-
def initialize(name,url,display_bar=true)
|
10
|
-
@name = name
|
11
|
-
@url = url
|
12
|
-
@display_bar = display_bar
|
13
|
-
end
|
14
|
-
|
15
|
-
def execute
|
16
|
-
win = Redcar.app.focussed_window
|
17
|
-
controller = ViewController.new(@name,@url)
|
18
|
-
tab = win.new_tab(HtmlTab)
|
19
|
-
tab.html_view.controller = controller
|
20
|
-
tab.focus
|
21
|
-
if @display_bar or
|
22
|
-
WebBookmarks.storage['show_browser_bar_on_start']
|
23
|
-
WebBookmarks::OpenBrowserBar.new.run
|
24
|
-
end
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
class FileWebPreview < Redcar::EditTabCommand
|
29
|
-
def execute
|
30
|
-
mirror = doc.mirror
|
31
|
-
if mirror and path = mirror.path and File.exists?(path)
|
32
|
-
name = "Preview: " +File.basename(path)
|
33
|
-
else
|
34
|
-
name = "Preview: (untitled)"
|
35
|
-
preview = java.io.File.createTempFile("preview","html")
|
36
|
-
preview.deleteOnExit
|
37
|
-
path = preview.getAbsolutePath
|
38
|
-
File.open(path,'w') {|f| f.puts(doc.get_all_text)}
|
39
|
-
end
|
40
|
-
url = "file://" + path
|
41
|
-
DisplayWebContent.new(name,url).run
|
42
|
-
end
|
43
|
-
end
|
44
|
-
|
45
7
|
class ShowTree < Redcar::Command
|
46
8
|
sensitize :open_project
|
47
9
|
def execute
|
@@ -52,21 +14,13 @@ module Redcar
|
|
52
14
|
project = Project::Manager.in_window(win)
|
53
15
|
tree = Tree.new(
|
54
16
|
TreeMirror.new(project),
|
55
|
-
TreeController.new(project)
|
17
|
+
TreeController.new(project,TREE_TITLE)
|
56
18
|
)
|
57
19
|
win.treebook.add_tree(tree)
|
58
20
|
end
|
59
21
|
end
|
60
22
|
end
|
61
23
|
|
62
|
-
class OpenBrowserBar < Redcar::Command
|
63
|
-
def execute
|
64
|
-
window = Redcar.app.focussed_window
|
65
|
-
speedbar = Redcar::WebBookmarks::BrowserBar.new
|
66
|
-
window.open_speedbar(speedbar)
|
67
|
-
end
|
68
|
-
end
|
69
|
-
|
70
24
|
class AddBookmark < Redcar::ProjectCommand
|
71
25
|
def initialize(url)
|
72
26
|
@protocol = url.split("://")[0]
|
@@ -1,15 +1,15 @@
|
|
1
1
|
|
2
2
|
module Redcar
|
3
3
|
class WebBookmarks
|
4
|
-
class TreeController
|
5
|
-
include Redcar::Tree::Controller
|
6
|
-
|
7
|
-
def initialize(project)
|
8
|
-
@project = project
|
9
|
-
end
|
4
|
+
class TreeController < Redcar::Project::ProjectTreeController
|
10
5
|
|
11
6
|
def activated(tree, node)
|
12
|
-
|
7
|
+
if node.is_a?(Bookmark)
|
8
|
+
display_bar = WebBookmarks.storage['show_browser_bar_on_start'] || true
|
9
|
+
Redcar::HtmlView::DisplayWebContent.new(node.text,node.url, display_bar).run
|
10
|
+
elsif node.is_a?(BookmarkReloadItem)
|
11
|
+
tree.refresh
|
12
|
+
end
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
@@ -30,16 +30,23 @@ module Redcar
|
|
30
30
|
|
31
31
|
def title; TREE_TITLE; end
|
32
32
|
|
33
|
-
def top
|
34
|
-
|
35
|
-
def load
|
33
|
+
def top
|
36
34
|
bookmarks = []
|
35
|
+
begin
|
36
|
+
bookmarks_files_paths.each do |path|
|
37
|
+
json = File.read(path)
|
38
|
+
bookmarks += JSON(json)["bookmarks"]
|
39
|
+
end
|
40
|
+
load(bookmarks)
|
41
|
+
rescue Object => e
|
42
|
+
Redcar::Application::Dialog.message_box("There was an error parsing the Web Bookmarks file: #{e.message}")
|
43
|
+
[BookmarkReloadItem.new]
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def load(bookmarks)
|
37
48
|
spares = []
|
38
49
|
groups = {}
|
39
|
-
bookmarks_files_paths.each do |path|
|
40
|
-
json = File.read(path)
|
41
|
-
bookmarks += JSON(json)["bookmarks"]
|
42
|
-
end
|
43
50
|
|
44
51
|
if bookmarks.any?
|
45
52
|
bookmarks.sort_by {|b| b["name"]}.map do |b|
|
File without changes
|
File without changes
|
File without changes
|
Binary file
|
data/{plugins/application/icons/redcar_icon_beta_dev.png → share/icons/redcar-icon-beta-dev.png}
RENAMED
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redcar
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 59
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 9
|
9
|
+
- 0
|
10
|
+
version: 0.9.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Daniel Lucraft
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-
|
18
|
+
date: 2010-11-25 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -853,6 +853,7 @@ files:
|
|
853
853
|
- share/icons/clock-select.png
|
854
854
|
- share/icons/clock-small.png
|
855
855
|
- share/icons/clock.png
|
856
|
+
- share/icons/close.png
|
856
857
|
- share/icons/cog.png
|
857
858
|
- share/icons/color--arrow.png
|
858
859
|
- share/icons/color--exclamation.png
|
@@ -1015,6 +1016,8 @@ files:
|
|
1015
1016
|
- share/icons/cutter--pencil.png
|
1016
1017
|
- share/icons/cutter--plus.png
|
1017
1018
|
- share/icons/cutter.png
|
1019
|
+
- share/icons/darwin-file.png
|
1020
|
+
- share/icons/darwin-folder.png
|
1018
1021
|
- share/icons/dashboard--arrow.png
|
1019
1022
|
- share/icons/dashboard--exclamation.png
|
1020
1023
|
- share/icons/dashboard--minus.png
|
@@ -2080,6 +2083,7 @@ files:
|
|
2080
2083
|
- share/icons/open-share-document.png
|
2081
2084
|
- share/icons/open-share-small.png
|
2082
2085
|
- share/icons/open-share.png
|
2086
|
+
- share/icons/open-source-flipped.png
|
2083
2087
|
- share/icons/open-source.png
|
2084
2088
|
- share/icons/openid.png
|
2085
2089
|
- share/icons/opml-balloon.png
|
@@ -2324,6 +2328,9 @@ files:
|
|
2324
2328
|
- share/icons/receipt.png
|
2325
2329
|
- share/icons/receipts-text.png
|
2326
2330
|
- share/icons/receipts.png
|
2331
|
+
- share/icons/redcar-icon-beta-dev.png
|
2332
|
+
- share/icons/redcar-icon-beta.png
|
2333
|
+
- share/icons/redcar-splash.png
|
2327
2334
|
- share/icons/report--arrow.png
|
2328
2335
|
- share/icons/report--exclamation.png
|
2329
2336
|
- share/icons/report--minus.png
|
@@ -3622,7 +3629,6 @@ files:
|
|
3622
3629
|
- lib/plugin_manager/spec/spec_helper.rb
|
3623
3630
|
- lib/redcar/installer.rb
|
3624
3631
|
- lib/redcar/instance_exec.rb
|
3625
|
-
- lib/redcar/jvm_options_probe.rb
|
3626
3632
|
- lib/redcar/plist.rb
|
3627
3633
|
- lib/redcar/ruby_extensions.rb
|
3628
3634
|
- lib/redcar/runner.rb
|
@@ -3639,12 +3645,7 @@ files:
|
|
3639
3645
|
- plugins/application/features/step_definitions/tree_steps.rb
|
3640
3646
|
- plugins/application/features/step_definitions/window_steps.rb
|
3641
3647
|
- plugins/application/features/support/env.rb
|
3642
|
-
- plugins/application/
|
3643
|
-
- plugins/application/icons/darwin-file.png
|
3644
|
-
- plugins/application/icons/darwin-folder.png
|
3645
|
-
- plugins/application/icons/redcar-splash.png
|
3646
|
-
- plugins/application/icons/redcar_icon_beta.png
|
3647
|
-
- plugins/application/icons/redcar_icon_beta_dev.png
|
3648
|
+
- plugins/application/features/support/fake_event.rb
|
3648
3649
|
- plugins/application/lib/application/assets/file.png
|
3649
3650
|
- plugins/application/lib/application/clipboard.rb
|
3650
3651
|
- plugins/application/lib/application/command/executor.rb
|
@@ -3708,6 +3709,12 @@ files:
|
|
3708
3709
|
- plugins/application_swt/lib/application_swt/notebook/tab_drag_and_drop_listener.rb
|
3709
3710
|
- plugins/application_swt/lib/application_swt/notebook/tab_transfer.rb
|
3710
3711
|
- plugins/application_swt/lib/application_swt/notebook.rb
|
3712
|
+
- plugins/application_swt/lib/application_swt/speedbar/button_item.rb
|
3713
|
+
- plugins/application_swt/lib/application_swt/speedbar/combo_item.rb
|
3714
|
+
- plugins/application_swt/lib/application_swt/speedbar/label_item.rb
|
3715
|
+
- plugins/application_swt/lib/application_swt/speedbar/slider_item.rb
|
3716
|
+
- plugins/application_swt/lib/application_swt/speedbar/text_box_item.rb
|
3717
|
+
- plugins/application_swt/lib/application_swt/speedbar/toggle_item.rb
|
3711
3718
|
- plugins/application_swt/lib/application_swt/speedbar.rb
|
3712
3719
|
- plugins/application_swt/lib/application_swt/tab.rb
|
3713
3720
|
- plugins/application_swt/lib/application_swt/toolbar/binding_translator.rb
|
@@ -3809,8 +3816,9 @@ files:
|
|
3809
3816
|
- plugins/document_search/features/replace.feature
|
3810
3817
|
- plugins/document_search/features/search.feature
|
3811
3818
|
- plugins/document_search/features/support/env.rb
|
3812
|
-
- plugins/document_search/lib/document_search/
|
3813
|
-
- plugins/document_search/lib/document_search/
|
3819
|
+
- plugins/document_search/lib/document_search/replace_all_command.rb
|
3820
|
+
- plugins/document_search/lib/document_search/replace_command.rb
|
3821
|
+
- plugins/document_search/lib/document_search/replace_next_command.rb
|
3814
3822
|
- plugins/document_search/lib/document_search/search_and_replace.rb
|
3815
3823
|
- plugins/document_search/lib/document_search.rb
|
3816
3824
|
- plugins/document_search/plugin.rb
|
@@ -3897,8 +3905,19 @@ files:
|
|
3897
3905
|
- plugins/find-in-project/lib/find_in_project.rb
|
3898
3906
|
- plugins/find-in-project/plugin.rb
|
3899
3907
|
- plugins/find-in-project/TODO.md
|
3908
|
+
- plugins/groovy/features/fixtures/test.groovy
|
3909
|
+
- plugins/groovy/features/step_definitions/groovy_steps.rb
|
3910
|
+
- plugins/groovy/features/support/env.rb
|
3911
|
+
- plugins/groovy/features/syntax_check_groovy.feature
|
3912
|
+
- plugins/groovy/lib/syntax_check/groovy.rb
|
3913
|
+
- plugins/groovy/plugin.rb
|
3914
|
+
- plugins/help/lib/help/help_tab.rb
|
3915
|
+
- plugins/help/lib/help/view_controller.rb
|
3900
3916
|
- plugins/help/lib/help.rb
|
3901
3917
|
- plugins/help/plugin.rb
|
3918
|
+
- plugins/help/views/default.css
|
3919
|
+
- plugins/help/views/index.html.erb
|
3920
|
+
- plugins/help/views/redcar_small_icon.png
|
3902
3921
|
- plugins/html_view/assets/blueprint/ie.css
|
3903
3922
|
- plugins/html_view/assets/blueprint/print.css
|
3904
3923
|
- plugins/html_view/assets/blueprint/screen.css
|
@@ -3911,12 +3930,26 @@ files:
|
|
3911
3930
|
- plugins/html_view/assets/blueprint/src/typography.css
|
3912
3931
|
- plugins/html_view/assets/jquery-1.4.min.js
|
3913
3932
|
- plugins/html_view/assets/redcar.css
|
3933
|
+
- plugins/html_view/features/browser_bar.feature
|
3934
|
+
- plugins/html_view/features/fixtures/other.html
|
3935
|
+
- plugins/html_view/features/fixtures/sample.html
|
3914
3936
|
- plugins/html_view/features/step_definitions/html_view_steps.rb
|
3915
3937
|
- plugins/html_view/features/support/env.rb
|
3938
|
+
- plugins/html_view/features/web_preview.feature
|
3916
3939
|
- plugins/html_view/lib/html_controller.rb
|
3940
|
+
- plugins/html_view/lib/html_view/browser_bar.rb
|
3941
|
+
- plugins/html_view/lib/html_view/commands.rb
|
3942
|
+
- plugins/html_view/lib/html_view/default_controller.rb
|
3917
3943
|
- plugins/html_view/lib/html_view/html_tab.rb
|
3918
3944
|
- plugins/html_view/lib/html_view.rb
|
3919
3945
|
- plugins/html_view/plugin.rb
|
3946
|
+
- plugins/html_view/views/index.html.erb
|
3947
|
+
- plugins/javascript/features/fixtures/test.js
|
3948
|
+
- plugins/javascript/features/support/env.rb
|
3949
|
+
- plugins/javascript/features/syntax_check_javascript.feature
|
3950
|
+
- plugins/javascript/lib/syntax_check/javascript.rb
|
3951
|
+
- plugins/javascript/plugin.rb
|
3952
|
+
- plugins/javascript/vendor/jslint.js
|
3920
3953
|
- plugins/line_tools/features/clear_line.feature
|
3921
3954
|
- plugins/line_tools/features/kill_line.feature
|
3922
3955
|
- plugins/line_tools/features/lower_text.feature
|
@@ -3949,15 +3982,17 @@ files:
|
|
3949
3982
|
- plugins/open_default_app/lib/open_default_app.rb
|
3950
3983
|
- plugins/open_default_app/plugin.rb
|
3951
3984
|
- plugins/open_default_app/screenshot.png
|
3985
|
+
- plugins/outline_view/features/outline_view.feature
|
3986
|
+
- plugins/outline_view/features/step_definitions/outline_steps.rb
|
3952
3987
|
- plugins/outline_view/lib/outline_view/commands.rb
|
3953
3988
|
- plugins/outline_view/lib/outline_view.rb
|
3954
3989
|
- plugins/outline_view/plugin.rb
|
3955
|
-
- plugins/
|
3956
|
-
- plugins/
|
3957
|
-
- plugins/
|
3958
|
-
- plugins/
|
3959
|
-
- plugins/
|
3960
|
-
- plugins/
|
3990
|
+
- plugins/outline_view/spec/fixtures/some_project/javascript.js
|
3991
|
+
- plugins/outline_view/spec/fixtures/some_project/nothing_to_see.rb
|
3992
|
+
- plugins/outline_view/spec/fixtures/some_project/one_lonely_class.rb
|
3993
|
+
- plugins/outline_view/spec/fixtures/some_project/similar_names.rb
|
3994
|
+
- plugins/outline_view/spec/fixtures/some_project/something_fancy.rb
|
3995
|
+
- plugins/outline_view/spec/fixtures/some_project/trailing_space.rb
|
3961
3996
|
- plugins/outline_view_swt/lib/outline_view_swt.rb
|
3962
3997
|
- plugins/outline_view_swt/plugin.rb
|
3963
3998
|
- plugins/pair_highlighter/lib/pair_highlighter/document_controller.rb
|
@@ -3966,6 +4001,7 @@ files:
|
|
3966
4001
|
- plugins/plugin_manager_ui/lib/plugin_manager_ui.rb
|
3967
4002
|
- plugins/plugin_manager_ui/plugin.rb
|
3968
4003
|
- plugins/plugin_manager_ui/views/index.html.erb
|
4004
|
+
- plugins/project/features/close_directory_tree.feature
|
3969
4005
|
- plugins/project/features/find_file.feature
|
3970
4006
|
- plugins/project/features/highlight_focussed_tab.feature
|
3971
4007
|
- plugins/project/features/move_and_rename_files.feature
|
@@ -3973,6 +4009,7 @@ files:
|
|
3973
4009
|
- plugins/project/features/open_directory_tree.feature
|
3974
4010
|
- plugins/project/features/refresh_directory_tree.feature
|
3975
4011
|
- plugins/project/features/step_definitions/directory_steps.rb
|
4012
|
+
- plugins/project/features/step_definitions/drb_steps.rb
|
3976
4013
|
- plugins/project/features/step_definitions/file_steps.rb
|
3977
4014
|
- plugins/project/features/step_definitions/project_tree_steps.rb
|
3978
4015
|
- plugins/project/features/sub_project.feature
|
@@ -3991,6 +4028,7 @@ files:
|
|
3991
4028
|
- plugins/project/lib/project/file_mirror.rb
|
3992
4029
|
- plugins/project/lib/project/find_file_dialog.rb
|
3993
4030
|
- plugins/project/lib/project/manager.rb
|
4031
|
+
- plugins/project/lib/project/project_tree_controller.rb
|
3994
4032
|
- plugins/project/lib/project/recent_directories.rb
|
3995
4033
|
- plugins/project/lib/project/sub_project.rb
|
3996
4034
|
- plugins/project/lib/project/support/recycle.js
|
@@ -4225,9 +4263,11 @@ files:
|
|
4225
4263
|
- plugins/redcar_debug/vendor/jruby-prof/test/basic_test.rb
|
4226
4264
|
- plugins/redcar_debug/views/history.html.erb
|
4227
4265
|
- plugins/redcar_debug/views/index.html.erb
|
4266
|
+
- plugins/repl/features/step_definitions/repl_steps.rb
|
4228
4267
|
- plugins/repl/lib/repl/clojure_mirror.rb
|
4229
4268
|
- plugins/repl/lib/repl/groovy_mirror.rb
|
4230
4269
|
- plugins/repl/lib/repl/repl_mirror.rb
|
4270
|
+
- plugins/repl/lib/repl/repl_tab.rb
|
4231
4271
|
- plugins/repl/lib/repl/ruby_mirror.rb
|
4232
4272
|
- plugins/repl/lib/repl.rb
|
4233
4273
|
- plugins/repl/plugin.rb
|
@@ -4238,6 +4278,9 @@ files:
|
|
4238
4278
|
- plugins/repl/vendor/dummy
|
4239
4279
|
- plugins/repl/vendor/enclojure-wrapper.jar
|
4240
4280
|
- plugins/repl/vendor/Wrapper.clj
|
4281
|
+
- plugins/ruby/features/fixtures/test.rb
|
4282
|
+
- plugins/ruby/features/support/env.rb
|
4283
|
+
- plugins/ruby/features/syntax_check_ruby.feature
|
4241
4284
|
- plugins/ruby/lib/syntax_check/ruby.rb
|
4242
4285
|
- plugins/ruby/plugin.rb
|
4243
4286
|
- plugins/ruby/README
|
@@ -4630,10 +4673,10 @@ files:
|
|
4630
4673
|
- plugins/snippets/lib/snippets/tab_handler.rb
|
4631
4674
|
- plugins/snippets/lib/snippets.rb
|
4632
4675
|
- plugins/snippets/plugin.rb
|
4633
|
-
- plugins/strip_trailing_spaces/
|
4676
|
+
- plugins/strip_trailing_spaces/features/fixtures/test.txt
|
4677
|
+
- plugins/strip_trailing_spaces/features/strip_trailing_spaces.feature
|
4634
4678
|
- plugins/strip_trailing_spaces/lib/strip_trailing_spaces.rb
|
4635
4679
|
- plugins/strip_trailing_spaces/plugin.rb
|
4636
|
-
- plugins/strip_trailing_spaces/README.md
|
4637
4680
|
- plugins/swt/lib/swt/cucumber_patches.rb
|
4638
4681
|
- plugins/swt/lib/swt/cucumber_runner.rb
|
4639
4682
|
- plugins/swt/lib/swt/event_loop.rb
|
@@ -4642,6 +4685,7 @@ files:
|
|
4642
4685
|
- plugins/swt/lib/swt/listener_helpers.rb
|
4643
4686
|
- plugins/swt/lib/swt.rb
|
4644
4687
|
- plugins/swt/plugin.rb
|
4688
|
+
- plugins/syntax_check/features/step_definitions/syntax_check_steps.rb
|
4645
4689
|
- plugins/syntax_check/lib/syntax_check/checker.rb
|
4646
4690
|
- plugins/syntax_check/lib/syntax_check/error.rb
|
4647
4691
|
- plugins/syntax_check/lib/syntax_check.rb
|
@@ -4671,14 +4715,25 @@ files:
|
|
4671
4715
|
- plugins/textmate/lib/textmate.rb
|
4672
4716
|
- plugins/textmate/plugin.rb
|
4673
4717
|
- plugins/textmate/views/installed_bundles.html.erb
|
4718
|
+
- plugins/todo_list/features/support/env.rb
|
4719
|
+
- plugins/todo_list/features/todo_list.feature
|
4674
4720
|
- plugins/todo_list/lib/todo_list/file_parser.rb
|
4675
4721
|
- plugins/todo_list/lib/todo_list/todo_controller.rb
|
4676
4722
|
- plugins/todo_list/lib/todo_list.rb
|
4677
4723
|
- plugins/todo_list/plugin.rb
|
4678
4724
|
- plugins/todo_list/README.md
|
4725
|
+
- plugins/todo_list/spec/fixtures/project/FIXME.file
|
4726
|
+
- plugins/todo_list/spec/fixtures/project/ignored_directory/TODO.file
|
4727
|
+
- plugins/todo_list/spec/fixtures/project/NOTE.ignored.file
|
4728
|
+
- plugins/todo_list/spec/fixtures/project/OPTIMIZE_colon.file
|
4729
|
+
- plugins/todo_list/spec/fixtures/project/XXX.ignored
|
4730
|
+
- plugins/todo_list/spec/fixtures/settings.rb
|
4731
|
+
- plugins/todo_list/spec/spec_helper.rb
|
4732
|
+
- plugins/todo_list/spec/todo_list/file_parser_spec.rb
|
4679
4733
|
- plugins/todo_list/views/default.css
|
4680
4734
|
- plugins/todo_list/views/index.html.erb
|
4681
4735
|
- plugins/todo_list/views/redcar_small_icon.png
|
4736
|
+
- plugins/tree/lib/tree/command.rb
|
4682
4737
|
- plugins/tree/lib/tree/controller.rb
|
4683
4738
|
- plugins/tree/lib/tree/mirror.rb
|
4684
4739
|
- plugins/tree/lib/tree.rb
|
@@ -4686,20 +4741,18 @@ files:
|
|
4686
4741
|
- plugins/tree/spec/spec_helper.rb
|
4687
4742
|
- plugins/tree_view_swt/lib/tree_view_swt.rb
|
4688
4743
|
- plugins/tree_view_swt/plugin.rb
|
4689
|
-
- plugins/
|
4690
|
-
- plugins/
|
4691
|
-
- plugins/
|
4692
|
-
- plugins/
|
4693
|
-
- plugins/
|
4744
|
+
- plugins/web_bookmarks/features/bookmark.feature
|
4745
|
+
- plugins/web_bookmarks/features/fixtures/other.html
|
4746
|
+
- plugins/web_bookmarks/features/fixtures/sample.html
|
4747
|
+
- plugins/web_bookmarks/features/step_definitions/web_steps.rb
|
4748
|
+
- plugins/web_bookmarks/features/support/env.rb
|
4694
4749
|
- plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb
|
4695
|
-
- plugins/web_bookmarks/lib/web_bookmarks/browser_bar.rb
|
4696
4750
|
- plugins/web_bookmarks/lib/web_bookmarks/commands.rb
|
4697
4751
|
- plugins/web_bookmarks/lib/web_bookmarks/tree.rb
|
4698
|
-
- plugins/web_bookmarks/lib/web_bookmarks/view_controller.rb
|
4699
4752
|
- plugins/web_bookmarks/lib/web_bookmarks.rb
|
4700
4753
|
- plugins/web_bookmarks/plugin.rb
|
4701
4754
|
- plugins/web_bookmarks/Screenshot.png
|
4702
|
-
- plugins/
|
4755
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Syntaxes/Ant.tmLanguage
|
4703
4756
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Syntaxes/Apache.plist
|
4704
4757
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Syntaxes/mod_perl.tmLanguage
|
4705
4758
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/Syntaxes/Blog___HTML__.plist
|
@@ -4763,6 +4816,7 @@ files:
|
|
4763
4816
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Syntaxes/Python.tmLanguage
|
4764
4817
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Python.tmbundle/Syntaxes/Regular_Expressions___Python__.tmLanguage
|
4765
4818
|
- plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/Syntaxes/ClojureRepl.plist
|
4819
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/Syntaxes/GroovyRepl.plist
|
4766
4820
|
- plugins/textmate/vendor/redcar-bundles/Bundles/RedcarRepl.tmbundle/Syntaxes/RubyRepl.plist
|
4767
4821
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Rez.tmbundle/Syntaxes/Rez.plist
|
4768
4822
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Haml.tmbundle/Syntaxes/Ruby_Haml.tmLanguage
|
@@ -4772,6 +4826,7 @@ files:
|
|
4772
4826
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Syntaxes/Ruby_on_Rails.plist
|
4773
4827
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/Syntaxes/SQL___Rails__.plist
|
4774
4828
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/Syntaxes/RSpec.tmLanguage
|
4829
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Sass.tmbundle/Syntaxes/Ruby Sass.tmLanguage
|
4775
4830
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/Syntaxes/Ruby.plist
|
4776
4831
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Syntaxes/Scala.tmLanguage
|
4777
4832
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/Syntaxes/Scala_Properties.tmLanguage
|
@@ -4792,6 +4847,8 @@ files:
|
|
4792
4847
|
- plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Syntaxes/XML.plist
|
4793
4848
|
- plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Syntaxes/XSL.plist
|
4794
4849
|
- plugins/textmate/vendor/redcar-bundles/Bundles/YAML.tmbundle/Syntaxes/YAML.plist
|
4850
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Preferences/Autocompletions.tmPreferences
|
4851
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Preferences/Symbol List Target.tmPreferences
|
4795
4852
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Comments.tmPreferences
|
4796
4853
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Completions.plist
|
4797
4854
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Preferences/Completions___Modules.tmPreferences
|
@@ -5016,6 +5073,7 @@ files:
|
|
5016
5073
|
- plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Preferences/Symbol_List___Templates.plist
|
5017
5074
|
- plugins/textmate/vendor/redcar-bundles/Bundles/YAML.tmbundle/Preferences/Comments.plist
|
5018
5075
|
- plugins/textmate/vendor/redcar-bundles/Bundles/YAML.tmbundle/Preferences/Indenting.plist
|
5076
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/Snippets/Doc Banner.tmSnippet
|
5019
5077
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/AllowOverride___allow__.tmSnippet
|
5020
5078
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/Directory.tmSnippet
|
5021
5079
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/Snippets/Options___opt__.tmSnippet
|
@@ -6690,6 +6748,7 @@ files:
|
|
6690
6748
|
- plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/Smart_return__indent_for_tag_pairs.plist
|
6691
6749
|
- plugins/textmate/vendor/redcar-bundles/Bundles/XML.tmbundle/Snippets/XML_Processing_Instruction.tmSnippet
|
6692
6750
|
- plugins/textmate/vendor/redcar-bundles/Bundles/YAML.tmbundle/Snippets/untitled.plist
|
6751
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ant.tmbundle/info.plist
|
6693
6752
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Apache.tmbundle/info.plist
|
6694
6753
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Blogging.tmbundle/info.plist
|
6695
6754
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Bundle Development.tmbundle/info.plist
|
@@ -6742,6 +6801,7 @@ files:
|
|
6742
6801
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Haml.tmbundle/info.plist
|
6743
6802
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby on Rails.tmbundle/info.plist
|
6744
6803
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby RSpec.tmbundle/info.plist
|
6804
|
+
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby Sass.tmbundle/info.plist
|
6745
6805
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Ruby.tmbundle/info.plist
|
6746
6806
|
- plugins/textmate/vendor/redcar-bundles/Bundles/Scala.tmbundle/info.plist
|
6747
6807
|
- plugins/textmate/vendor/redcar-bundles/Bundles/ShellScript.tmbundle/info.plist
|