Class: Commit

Inherits:
Array show all
Defined in:
lib/commands/commit.rb

Overview

require_relative(‘internet.rb’)

Instance Method Summary collapse

Methods inherited from Array

#add, #execute, #to_html

Instance Method Details

#updateObject



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/commands/commit.rb', line 4

def update
  if(File.exists?('.git') && `git config --list`.include?('user.name='))
    if(!`git status`.include?('nothing to commit') &&
       !`git status`.include?('untracked files present'))
      if(File.exists?('commit.message') && File.read('commit.message').gsub(/\s+/,"").length >0)
        add "git commit -a -v -m \"#{File.read('commit.message')}\""
      else
        add "git commit -m'all'"
      end
      add "<%FileUtils.rm('commit.message')%>" if File.exists?('commit.message')
      end    
  end
  if(File.exists?('.svn') && Internet.available?)
    add 'svn commit -m"commit all"'
  end
end