Sha256: 03c52845890e68fcdbbdf2dc89e61cbefaeb9acd0efc7443ff91506478bb3c91

Contents?: true

Size: 1.21 KB

Versions: 3

Compression:

Stored size: 1.21 KB

Contents

require 'fileutils'
require 'pre-commit/configuration'

module PreCommit
  class Installer

    TARGET_GIT_PATH = '.git'
    TARGET_HOOKS_PATH = 'hooks/pre-commit'
    TEMPLATE_DIR = File.expand_path("../../../templates/hooks/", __FILE__)

    attr_reader :key

    def initialize(key = nil)
      @key = key || "automatic"
    end

    def hook
      templates[key.sub(/^--/, "")]
    end

    def target
      target_git_path =
      if   File.directory?(TARGET_GIT_PATH)
      then TARGET_GIT_PATH
      else File.readlines('.git').first.match(/gitdir: (.*)$/)[1]
      end
      File.join(target_git_path, TARGET_HOOKS_PATH)
    end

    def install
      if
        hook
      then
        FileUtils.mkdir_p(File.dirname(target))
        FileUtils.cp(hook, target)
        FileUtils.chmod(0755, target)
        puts "Installed #{hook} to #{target}"
        true
      else
        warn "Could not find template #{key}"
        false
      end
    end

    def templates
      return @templates if @templates
      pattern = File.join(TEMPLATE_DIR, "*")

      @templates =
      Dir.glob(pattern).inject({}) do |hash, file|
        key = file.match(/\/([^\/]+?)$/)[1]
        hash[key] = file
        hash
      end
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pre-commit-0.32.0 lib/pre-commit/installer.rb
pre-commit-0.31.0 lib/pre-commit/installer.rb
pre-commit-0.30.0 lib/pre-commit/installer.rb