Class: MGit::Workspace::RepoFilterConfig

Inherits:
Struct
  • Object
show all
Defined in:
lib/m-git/workspace.rb

Instance Attribute Summary collapse

Instance Attribute Details

#auto_execObject

Returns the value of attribute auto_exec

Returns:

  • (Object)

    the current value of auto_exec



9
10
11
# File 'lib/m-git/workspace.rb', line 9

def auto_exec
  @auto_exec
end

#exclude_reposObject

Returns the value of attribute exclude_repos

Returns:

  • (Object)

    the current value of exclude_repos



9
10
11
# File 'lib/m-git/workspace.rb', line 9

def exclude_repos
  @exclude_repos
end

#include_lockObject

Returns the value of attribute include_lock

Returns:

  • (Object)

    the current value of include_lock



9
10
11
# File 'lib/m-git/workspace.rb', line 9

def include_lock
  @include_lock
end

#select_reposObject

Returns the value of attribute select_repos

Returns:

  • (Object)

    the current value of select_repos



9
10
11
# File 'lib/m-git/workspace.rb', line 9

def select_repos
  @select_repos
end

#仓库过滤器,过滤执行的仓库Object



9
# File 'lib/m-git/workspace.rb', line 9

RepoFilterConfig = Struct.new(:auto_exec, :include_lock, :select_repos, :exclude_repos)