Class: MGit::Workspace::RepoFilterConfig
- Inherits:
-
Struct
- Object
- Struct
- MGit::Workspace::RepoFilterConfig
- Defined in:
- lib/m-git/workspace.rb
Instance Attribute Summary collapse
-
#auto_exec ⇒ Object
Returns the value of attribute auto_exec.
-
#exclude_repos ⇒ Object
Returns the value of attribute exclude_repos.
-
#include_lock ⇒ Object
Returns the value of attribute include_lock.
-
#select_repos ⇒ Object
Returns the value of attribute select_repos.
- #仓库过滤器,过滤执行的仓库 ⇒ Object
Instance Attribute Details
#auto_exec ⇒ Object
Returns the value of attribute auto_exec
9 10 11 |
# File 'lib/m-git/workspace.rb', line 9 def auto_exec @auto_exec end |
#exclude_repos ⇒ Object
Returns the value of attribute exclude_repos
9 10 11 |
# File 'lib/m-git/workspace.rb', line 9 def exclude_repos @exclude_repos end |
#include_lock ⇒ Object
Returns the value of attribute include_lock
9 10 11 |
# File 'lib/m-git/workspace.rb', line 9 def include_lock @include_lock end |
#select_repos ⇒ Object
Returns the value of attribute 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) |