class Bookbinder::Ingest::MissingWorkingCopy
Public Class Methods
new(source_repo_name, source_dir, source_ref=nil)
click to toggle source
# File lib/bookbinder/ingest/missing_working_copy.rb, line 4 def initialize(source_repo_name, source_dir, source_ref=nil) @source_repo_name = source_repo_name @source_dir = source_dir @source_ref = source_ref end
Public Instance Methods
available?()
click to toggle source
# File lib/bookbinder/ingest/missing_working_copy.rb, line 22 def available? false end
full_name()
click to toggle source
# File lib/bookbinder/ingest/missing_working_copy.rb, line 10 def full_name @source_repo_name end
path()
click to toggle source
# File lib/bookbinder/ingest/missing_working_copy.rb, line 14 def path Pathname(@source_dir) end
ref()
click to toggle source
# File lib/bookbinder/ingest/missing_working_copy.rb, line 18 def ref @source_ref end