2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-12-12 14:10:39 +00:00
|
|
|
module Modules
|
|
|
|
module Models
|
|
|
|
module RsyncStub
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2012-02-22 22:57:43 +00:00
|
|
|
def create_directory
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2011-12-12 14:10:39 +00:00
|
|
|
def mount_directory_for_rsync
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def umount_directory_for_rsync
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
module InstanceMethods
|
|
|
|
end
|
|
|
|
|
|
|
|
module ClassMethods
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|