plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb in redcar-0.8.1 vs plugins/web_bookmarks/lib/web_bookmarks/bookmark.rb in redcar-0.9.0

- old
+ new

@@ -1,8 +1,17 @@ module Redcar class WebBookmarks - class Bookmark + class BookmarkReloadItem + include Redcar::Tree::Mirror::NodeMirror + + def leaf?; true; end + def text; "Reload Bookmarks"; end + def icon; :"arrow_circle"; end + def children; []; end + end + + class Bookmark include Redcar::Tree::Mirror::NodeMirror attr_reader :url def initialize(name,url) @name = name \ No newline at end of file