Class: Commands::Push

Inherits:
Object
  • Object
show all
Defined in:
lib/commands/push.rb

Instance Method Summary collapse

Instance Method Details

#optionsObject

holds the options that were passed you can set any initial defaults here



13
14
15
16
# File 'lib/commands/push.rb', line 13

def options
  @options ||= {
  }
end

#register(opts, global_options) ⇒ Object



24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'lib/commands/push.rb', line 24

def register(opts, global_options)
  opts.banner = "Usage: push [options]"
  opts.description = "Push code to the remote repo."

  opts.on("--remote-version", "Push from your local dev branch to the remote version branch - use with caution!") do |v|
    options[:remote_version] = true
  end

  opts.on('-n', "--dry-run", "Perform a dry run.") do |v|
    options[:dry_run] = true
  end

end

#required_optionsObject

required options



19
20
21
22
# File 'lib/commands/push.rb', line 19

def required_options
  @required_options ||= Set.new [
  ]
end

#run(global_options) ⇒ Object



38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
# File 'lib/commands/push.rb', line 38

def run(global_options)

  # see if we can open the config file - we append the .config suffix
  # the file is expected to be in JSON format
  remote_version = !!options[:remote_version]
  dry_run = !!options[:dry_run] ? "--dry-run" : ""

  if ARGV.length > 0
    raise "You must specify all arguments with their options."
  end

  # get config based on name of current dir
  info = EbmSharedLib.get_config_from_top_dir

  # Back up to version parent dir.  This directory contains the top level repos.
  top_dir = Dir.pwd

  repos = info[:repos]
  repos.each do |repo|
    if repo[:create_dev_branch]
      repo_name = EbmSharedLib.get_repo_name(repo[:git_path])
      repo_path = "#{top_dir}/#{repo_name}"
      local_branch = EbmSharedLib.get_current_branch(repo, repo_path)

      puts("\n#{repo_name} push:\n");

      if remote_version
        # pulling from remote version branch
        remote_branch = repo[:branch]
        cmd = "git push #{dry_run} origin #{local_branch}:#{remote_branch}"
      else
        # pull from the remote branch of the current branch
        # they want to commit whatever has changed and push to current remote
        # first grab the current branch name
        cmd = "git push #{dry_run} origin #{local_branch}"
      end
      if EbmSharedLib::CL.do_cmd_result(cmd, repo_path) != 0
        raise "Git push failed for #{repo_name}."
      end
    end
  end

end