Class: GitBundle::Commands::Generate
- Inherits:
-
Object
- Object
- GitBundle::Commands::Generate
- Includes:
- GitBundle::Console
- Defined in:
- lib/git_bundle/commands/generate.rb
Constant Summary
Constants included from GitBundle::Console
Instance Method Summary collapse
-
#initialize(project, args) ⇒ Generate
constructor
A new instance of Generate.
- #invoke ⇒ Object
Methods included from GitBundle::Console
#clear_line, #parallel, #puts_attention, #puts_error, #puts_heading, #puts_prompt, #puts_repo_heading, #puts_repo_heading_switch, #puts_stay_on_line, #puts_wait_line
Constructor Details
#initialize(project, args) ⇒ Generate
Returns a new instance of Generate.
6 7 8 9 |
# File 'lib/git_bundle/commands/generate.rb', line 6 def initialize(project, args) @project = project @args = args end |
Instance Method Details
#invoke ⇒ Object
11 12 13 14 15 |
# File 'lib/git_bundle/commands/generate.rb', line 11 def invoke @project.load_dependant_repositories @project.repositories.each {|p| @project.branch_config.current[p.name] = p.branch} @project.branch_config.save end |