Sha256: 8c095017a8d7b3015b9cc5d4ccd503e4e7d6924da3bf28c79ee0c25994ddb389
Contents?: true
Size: 452 Bytes
Versions: 2
Compression:
Stored size: 452 Bytes
Contents
# frozen_string_literal: true require 'avm/launcher/stereotype' require 'eac_ruby_utils/core_ext' module Avm module Projects module Stereotypes class Git require_sub __FILE__ include Avm::Launcher::Stereotype class << self def match?(path) File.directory?(path.real.subpath('.git')) end def color :white end end end end end end
Version data entries
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
avm-tools-0.141.0 | lib/avm/projects/stereotypes/git.rb |
eac_tools-0.36.1 | sub/avm-tools/lib/avm/projects/stereotypes/git.rb |