Class: Jive::Git

Inherits:
Object
  • Object
show all
Defined in:
lib/jive/git.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(shell = ::Jive.shell) ⇒ Git

Returns a new instance of Git.



7
8
9
# File 'lib/jive/git.rb', line 7

def initialize(shell = ::Jive.shell)
  @shell = shell
end

Instance Attribute Details

#shellObject (readonly)

Returns the value of attribute shell.



5
6
7
# File 'lib/jive/git.rb', line 5

def shell
  @shell
end

Instance Method Details

#cd(slug, host: "github.com") ⇒ Object



20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/jive/git.rb', line 20

def cd(slug, host: "github.com")
  dir = target_dir_for(slug, host: host)
  if dir.exist?
    shell.after_run([
      ["cd", dir],
      ["ctags", dir],
      ["setenv", "JIVE_LAST_RUN=#{Time.now.to_i}"]
    ])
  else
    clone(slug)
  end
end

#clone(slug, host: "github.com") ⇒ Object



11
12
13
14
15
16
17
18
# File 'lib/jive/git.rb', line 11

def clone(slug, host: "github.com")
  dir = target_dir_for(slug, host: host)
  unless dir.exist?
    shell.execute([:mkdir, "-p", dir.parent.to_s])
    shell.execute([:git, "clone", "git@#{host}:#{slug}", dir])
  end
  cd(slug, host: host) if dir.exist?
end

#semantic_helpObject



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/jive/git.rb', line 33

def semantic_help
  <<~MESSAGE
    Format: <type>(<scope>): <subject>

    <scope> is optional

    feat: add hat wobble
    ^--^  ^------------^
    |     |
    |     +-> Summary in present tense.
    |
    +-------> Type: chore, docs, feat, fix, refactor, style, or test.

    chore: updating grunt tasks etc; no production code change
    docs: changes to the documentation
    feat: new feature for the user, not a new feature for build script
    fix: bug fix for the user, not a fix to a build script
    refactor: refactoring production code, eg. renaming a variable
    style: formatting, missing semi colons, etc; no production code change
    test: adding missing tests, refactoring tests; no production code change
  MESSAGE
end