lib/commit.rb in dev_tasks-0.0.7 vs lib/commit.rb in dev_tasks-0.0.8
- old
+ new
@@ -1,10 +1,15 @@
class Commit < Array
def initialize
if(Dir.exists?(".git"))
if(!`git status`.include?('nothing to commit') || `git status`.include?('untracked files present'))
- self.add 'git commit -a -v -m "commit all"'
+ if(File.exists?('commit.message') && File.read('commit.message').gsub(/\s+/, "").length > 0)
+ self.add "git commit -a -v -m \"#{File.read('commit.message')}\""
+ self.add "<%File.open('commit.message','w'){|f|f.write('')}%>"
+ else
+ self.add 'git commit -a -v -m "commit all"'
+ end
end
end
end
def add command
\ No newline at end of file