Module: Asgit

Defined in:
lib/asgit.rb,
lib/asgit/url.rb,
lib/asgit/shell.rb,
lib/asgit/project.rb,
lib/asgit/version.rb,
lib/asgit/services.rb,
lib/asgit/services/github.rb,
lib/asgit/services/service.rb,
lib/asgit/services/bitbucket.rb

Defined Under Namespace

Modules: Services, Shell Classes: Project, Url

Constant Summary collapse

VERSION =
"0.3.0"

Class Method Summary collapse

Class Method Details

.current_branchString

Get current git branch based on exec directory

Returns:

  • (String)

    the current checked out branch



17
18
19
# File 'lib/asgit.rb', line 17

def current_branch
  Shell.run( "git symbolic-ref HEAD --short" ).stdout.strip
end

.current_commitString

Get current git commit based on exec directory

Returns:

  • (String)

    the current commit level



23
24
25
# File 'lib/asgit.rb', line 23

def current_commit
  Shell.run( "git rev-parse HEAD" ).stdout.strip
end

.remote_up_to_date?Boolean

Check if branch is in sync with remote

Returns:

  • (Boolean)


29
30
31
32
# File 'lib/asgit.rb', line 29

def remote_up_to_date?
  resp = Shell.run "git push --dry-run --porcelain"
  return resp.success? && resp.stdout.match(/#{current_branch}\s+?\[up\sto\sdate\]/)
end

.working_tree_clean?Boolean

Check if working tree is clean

Returns:

  • (Boolean)

    true if branch is clean



11
12
13
# File 'lib/asgit.rb', line 11

def working_tree_clean?
  Shell.run( "git status --porcelain" ).stdout.empty?
end