lib/commands/look.rb in lookfile-0.1.2 vs lib/commands/look.rb in lookfile-0.1.3

- old
+ new

@@ -3,10 +3,11 @@ require 'commands/add' require 'commands/set_repository' require 'commands/push' require 'commands/show' require 'commands/status' +require 'commands/restore' # Command 'lookfile' implementation class Look < Command def self.options_messages '' @@ -19,8 +20,8 @@ def self.parent nil end def self.childrens - [Init, Add, Push, Status, Show, SetRepository] + [Init, Add, Push, Status, Show, Restore, SetRepository] end end