Sha256: 8cc751886aa5defca3b6968bff0679d4ab818867fb3914d98d0dc76283700bcd
Contents?: true
Size: 1.8 KB
Versions: 8
Compression:
Stored size: 1.8 KB
Contents
# # Copyright (C) 2010-2016 dtk contributors # # This file is part of the dtk project. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require File.expand_path('../../git_repo.rb',File.dirname(__FILE__)) module DtkCommon; module DSL class DirectoryParser class Git < self # def initialize(repo_path,directory_type,branch='master') def initialize(directory_type,repo_path,branch='master') super(directory_type) # puts repo_path @repo_path = repo_path @repo_branch = GitRepo::Branch.new(repo_path,branch) end def self.implements_method?(method_name) if DirectoryParserMethods.include?(method_name) case method_name when :parse_directory GitRepo::Branch.implements_method?(:get_file_content) else true end end end private def all_files_from_root() # TODO: Watch version here # output = `git --git-dir=#{@repo_path} ls-tree --full-tree -r HEAD` @repo_branch.list_files() end def get_content(file_path) # output = `git --git-dir=#{@repo_path} show HEAD:#{file_path}` # output = '{}' if output.empty? # output #If file does not exsist will return nil @repo_branch.get_file_content(file_path) end end end end; end
Version data entries
8 entries across 8 versions & 1 rubygems